diff --git a/.github/validation_samples/kaon_enhanced/config.py b/.github/validation_samples/kaon_enhanced/config.py new file mode 100644 index 000000000..354baeb4b --- /dev/null +++ b/.github/validation_samples/kaon_enhanced/config.py @@ -0,0 +1,159 @@ +import os +import sys + +from LDMX.Framework import ldmxcfg + +thisPassName = 'test' +p=ldmxcfg.Process(thisPassName) + +p.termLogLevel = 0 +# This need to be set but has no meaning given p.totalEvents +p.maxEvents = 1 +# kaon-focused sample takes about twice as long as normal PN, +# so we ask for half as many events such that validation jobs stay +# time-limited by the PN +p.totalEvents = int(os.environ['LDMX_NUM_EVENTS']) // 2 +p.run = int(os.environ['LDMX_RUN_NUMBER']) + +from LDMX.SimCore import generators as gen +from LDMX.SimCore import bias_operators +from LDMX.SimCore import kaon_physics +from LDMX.SimCore import photonuclear_models as pn +from LDMX.Biasing import ecal +from LDMX.Biasing import filters +from LDMX.Biasing import particle_filter +from LDMX.Biasing import util +from LDMX.Biasing import include as includeBiasing + +detector = 'ldmx-det-v14-8gev' +generator=gen.single_8gev_e_upstream_tagger() +bias_factor = 550. +bias_treshold = 5000. + +mySim = ecal.photo_nuclear(detector, generator) +mySim.description = f'8 GeV ECal Kaon PN simulation, xsec bias {bias_factor}' +mySim.biasing_operators = [ bias_operators.PhotoNuclear('ecal',bias_factor,bias_treshold,only_children_of_primary = True) ] + +# Configure the sequence in which user actions should be called. +includeBiasing.library() +mySim.actions.clear() +mySim.actions.extend([ + filters.TaggerVetoFilter(thresh=2*3800.), + # Only consider events where a hard brem occurs + filters.TargetBremFilter(recoil_max_p = 2*1500.,brem_min_e = 2*2500.), + # Only consider events where a PN reaction happnes in the ECal + filters.EcalProcessFilter(), + # Tag all photo-nuclear tracks to persist them to the event. + util.TrackProcessFilter.photo_nuclear() +]) + +# set up "upKaon" parameters which reduces the charged kaon lifetimes by a factor 1/50 +# and forces decays to be into one of the leptonic decay modes. +mySim.kaon_parameters = kaon_physics.KaonPhysics.upKaons() + +# Alternative pn models +myModel = pn.BertiniAtLeastNProductsModel.kaon() +# Count all (not stopped) particles as "hard" +myModel.hard_particle_threshold=0. +# Apply the model to any nucleus +myModel.zmin = 0 +# Apply the model for photonuclear reactions with > 5000 MeV photons +myModel.emin = 5000. +# PDG ids for K^0_L, K^0_S, K^0, K^+, and K^- respectively +myModel.pdg_ids = [130, 310, 311, 321, -321] +# Require at least 1 hard particle from the list above +myModel.min_products = 1 + +# Change the default model to the kaon producing model +mySim.photonuclear_model = myModel + +# Add the filter at the end of the current list of user actions. +# Filter for events with a kaon daughter +myFilter = particle_filter.PhotoNuclearProductsFilter.kaon() +mySim.actions.extend([myFilter]) + +# Loading calorimeter and TS processors +import LDMX.Ecal.EcalGeometry +import LDMX.Ecal.ecal_hardcoded_conditions +import LDMX.Hcal.HcalGeometry +import LDMX.Hcal.hcal_hardcoded_conditions + +from LDMX.Ecal import digi as eDigi +from LDMX.Ecal import vetos +from LDMX.Hcal import digi as hDigi +from LDMX.Hcal import hcal + +from LDMX.TrigScint.trigScint import TrigScintDigiProducer +from LDMX.TrigScint.trigScint import TrigScintClusterProducer +from LDMX.TrigScint.trigScint import trigScintTrack + +from LDMX.Recon.electronCounter import ElectronCounter + +#TS digi + clustering + track chain +tsDigisDown =TrigScintDigiProducer.pad1() +tsDigisTag =TrigScintDigiProducer.pad2() +tsDigisUp =TrigScintDigiProducer.pad3() + +tsDigis = [tsDigisDown, tsDigisTag, tsDigisUp] +for d in tsDigis : + d.randomSeed = 1 + +tsClustersDown =TrigScintClusterProducer.pad1() +tsClustersTag =TrigScintClusterProducer.pad2() +tsClustersUp =TrigScintClusterProducer.pad3() + +tsClustersDown.input_collection = tsDigisDown.output_collection +tsClustersTag.input_collection = tsDigisTag.output_collection +tsClustersUp.input_collection = tsDigisUp.output_collection + +#make sure to pick up the right pass +tsClustersTag.input_pass_name = thisPassName +tsClustersUp.input_pass_name = tsClustersTag.input_pass_name +tsClustersDown.input_pass_name = tsClustersTag.input_pass_name + +trigScintTrack.input_pass_name = thisPassName +trigScintTrack.seeding_collection = tsClustersTag.output_collection + +# ECAL part +ecalReco =eDigi.EcalRecProducer() +ecalDigi = eDigi.EcalDigiProducer() +ecalVeto =vetos.EcalVetoProcessor() + +# HCAL part +hcalDigi =hDigi.HcalDigiProducer() +hcalReco =hDigi.HcalRecProducer() +hcalVeto =hcal.HcalVetoProcessor() + +# electron counter for trigger processor +eCount = ElectronCounter( 1, "ElectronCounter") # first argument is number of electrons in simulation +eCount.input_pass_name = '' +from LDMX.Recon.simpleTrigger import TriggerProcessor +simpleTrig = TriggerProcessor("simpleTrig",8000.) +simpleTrig.input_pass=thisPassName + +# Load DQM +from LDMX.DQM import dqm + +p.sequence=[ + mySim, + ecalDigi, + ecalReco, + ecalVeto, + *tsDigis, + tsClustersTag, + tsClustersUp, + tsClustersDown, + trigScintTrack, + eCount, + simpleTrig, + hcalDigi, + hcalReco, + hcalVeto, + dqm.PhotoNuclearDQM(verbose=False) + ] + +p.sequence.extend(dqm.all_dqm) + + +p.histogramFile = f'hist.root' +p.outputFiles = [f'events.root'] diff --git a/.github/validation_samples/kaon_enhanced/gold.log b/.github/validation_samples/kaon_enhanced/gold.log new file mode 100644 index 000000000..5fbd15d9a --- /dev/null +++ b/.github/validation_samples/kaon_enhanced/gold.log @@ -0,0 +1,143831 @@ +---- LDMXSW: Loading configuration -------- +[2024-08-29 17:58:19.222061] [0x00007f79841ddbc0] [info] ElectronCounter is using parameters: + input_collection = TriggerPadTracksY + input_pass_name = + output_collection = BeamElectronCount + simulated_electron_number = 1 + use_simulated_electron_number = 0 +[2024-08-29 17:58:24.469652] [0x00007f79841ddbc0] [info] In TrigScintDQM::configure, got parameters TriggerPad1SimHits and pad1 +[2024-08-29 17:58:24.469672] [0x00007f79841ddbc0] [info] In TrigScintDQM::configure, got parameters TriggerPad2SimHits and pad2 +[2024-08-29 17:58:24.469683] [0x00007f79841ddbc0] [info] In TrigScintDQM::configure, got parameters TriggerPad3SimHits and pad3 +[2024-08-29 17:58:24.469694] [0x00007f79841ddbc0] [info] In TrigScintHitDQM::configure, got parameters trigScintDigisPad1 and pad1 +[2024-08-29 17:58:24.469704] [0x00007f79841ddbc0] [info] In TrigScintHitDQM::configure, got parameters trigScintDigisPad2 and pad2 +[2024-08-29 17:58:24.469714] [0x00007f79841ddbc0] [info] In TrigScintHitDQM::configure, got parameters trigScintDigisPad3 and pad3 +[2024-08-29 17:58:24.469725] [0x00007f79841ddbc0] [info] In TrigScintClusterDQM::configure, got parameters TriggerPad1Clusters, pad = pad1, pass = +[2024-08-29 17:58:24.469736] [0x00007f79841ddbc0] [info] In TrigScintClusterDQM::configure, got parameters TriggerPad2Clusters, pad = pad2, pass = +[2024-08-29 17:58:24.469745] [0x00007f79841ddbc0] [info] In TrigScintClusterDQM::configure, got parameters TriggerPad3Clusters, pad = pad3, pass = +[2024-08-29 17:58:24.469756] [0x00007f79841ddbc0] [info] In TrigScintTrackDQM::configure, got parameters TriggerPadTracks and +---- LDMXSW: Configuration load complete -------- +---- LDMXSW: Starting event processing -------- +[ RunManager ]: Parallel worlds physics list has been registered. +[ RunManager ]: Biasing enabled with 1 operator(s). +[ RunManager ]: Biasing operator 'ecal_bias_pn' set to bias gamma + [ KaonPhysics ] 1 : Decay details (kaon+) before setting branching ratios and lifetimes + [ KaonPhysics ] 1 : Decay table details for kaon+ (PDG Lifetime 1.238000000000000e+01) + [ KaonPhysics ] 1 : Channel 0 (kaon+ -> mu+ + nu_mu) Kinematics type Phase Space with BR 0.6355 + [ KaonPhysics ] 1 : Channel 1 (kaon+ -> pi+ + pi0) Kinematics type Phase Space with BR 0.2066 + [ KaonPhysics ] 1 : Channel 2 (kaon+ -> pi+ + pi+ + pi-) Kinematics type Phase Space with BR 0.0559 + [ KaonPhysics ] 1 : Channel 3 (kaon+ -> pi0 + e+ + nu_e) Kinematics type KL3 Decay with BR 0.0507 + [ KaonPhysics ] 1 : Channel 4 (kaon+ -> pi0 + mu+ + nu_mu) Kinematics type KL3 Decay with BR 0.0335 + [ KaonPhysics ] 1 : Channel 5 (kaon+ -> pi+ + pi0 + pi0) Kinematics type Phase Space with BR 0.01761 + [ KaonPhysics ] 1 : Decay details (kaon+) after setting branching ratios and lifetimes + [ KaonPhysics ] 1 : Decay table details for kaon+ (PDG Lifetime 2.476000000000000e-01) + [ KaonPhysics ] 1 : Channel 0 (kaon+ -> mu+ + nu_mu) Kinematics type Phase Space with BR 0.8831 + [ KaonPhysics ] 1 : Channel 1 (kaon+ -> pi+ + pi0) Kinematics type Phase Space with BR 0 + [ KaonPhysics ] 1 : Channel 2 (kaon+ -> pi+ + pi+ + pi-) Kinematics type Phase Space with BR 0 + [ KaonPhysics ] 1 : Channel 3 (kaon+ -> pi0 + e+ + nu_e) Kinematics type KL3 Decay with BR 0.0704 + [ KaonPhysics ] 1 : Channel 4 (kaon+ -> pi0 + mu+ + nu_mu) Kinematics type KL3 Decay with BR 0.0465 + [ KaonPhysics ] 1 : Channel 5 (kaon+ -> pi+ + pi0 + pi0) Kinematics type Phase Space with BR 0 + [ KaonPhysics ] 1 : Decay details (kaon-) before setting branching ratios and lifetimes + [ KaonPhysics ] 1 : Decay table details for kaon- (PDG Lifetime 1.238000000000000e+01) + [ KaonPhysics ] 1 : Channel 0 (kaon- -> mu- + anti_nu_mu) Kinematics type Phase Space with BR 0.6355 + [ KaonPhysics ] 1 : Channel 1 (kaon- -> pi- + pi0) Kinematics type Phase Space with BR 0.2066 + [ KaonPhysics ] 1 : Channel 2 (kaon- -> pi- + pi+ + pi-) Kinematics type Phase Space with BR 0.0559 + [ KaonPhysics ] 1 : Channel 3 (kaon- -> pi0 + e- + anti_nu_e) Kinematics type KL3 Decay with BR 0.0507 + [ KaonPhysics ] 1 : Channel 4 (kaon- -> pi0 + mu- + anti_nu_mu) Kinematics type KL3 Decay with BR 0.0335 + [ KaonPhysics ] 1 : Channel 5 (kaon- -> pi- + pi0 + pi0) Kinematics type Phase Space with BR 0.01761 + [ KaonPhysics ] 1 : Decay details (kaon-) after setting branching ratios and lifetimes + [ KaonPhysics ] 1 : Decay table details for kaon- (PDG Lifetime 2.476000000000000e-01) + [ KaonPhysics ] 1 : Channel 0 (kaon- -> mu- + anti_nu_mu) Kinematics type Phase Space with BR 0.8831 + [ KaonPhysics ] 1 : Channel 1 (kaon- -> pi- + pi0) Kinematics type Phase Space with BR 0 + [ KaonPhysics ] 1 : Channel 2 (kaon- -> pi- + pi+ + pi-) Kinematics type Phase Space with BR 0 + [ KaonPhysics ] 1 : Channel 3 (kaon- -> pi0 + e- + anti_nu_e) Kinematics type KL3 Decay with BR 0.0704 + [ KaonPhysics ] 1 : Channel 4 (kaon- -> pi0 + mu- + anti_nu_mu) Kinematics type KL3 Decay with BR 0.0464 + [ KaonPhysics ] 1 : Channel 5 (kaon- -> pi- + pi0 + pi0) Kinematics type Phase Space with BR 0 + [ KaonPhysics ] 1 : Decay details (kaon0L) before setting branching ratios and lifetimes + [ KaonPhysics ] 1 : Decay table details for kaon0L (PDG Lifetime 5.116000000000000e+01) + [ KaonPhysics ] 1 : Channel 0 (kaon0L -> pi- + e+ + nu_e) Kinematics type KL3 Decay with BR 0.2027 + [ KaonPhysics ] 1 : Channel 1 (kaon0L -> pi+ + e- + anti_nu_e) Kinematics type KL3 Decay with BR 0.2027 + [ KaonPhysics ] 1 : Channel 2 (kaon0L -> pi0 + pi0 + pi0) Kinematics type Phase Space with BR 0.1952 + [ KaonPhysics ] 1 : Channel 3 (kaon0L -> pi- + mu+ + nu_mu) Kinematics type KL3 Decay with BR 0.1352 + [ KaonPhysics ] 1 : Channel 4 (kaon0L -> pi+ + mu- + anti_nu_mu) Kinematics type KL3 Decay with BR 0.1352 + [ KaonPhysics ] 1 : Channel 5 (kaon0L -> pi0 + pi+ + pi-) Kinematics type Phase Space with BR 0.1254 + [ KaonPhysics ] 1 : Decay details (kaon0L) after setting branching ratios and lifetimes + [ KaonPhysics ] 1 : Decay table details for kaon0L (PDG Lifetime 5.116000000000000e+01) + [ KaonPhysics ] 1 : Channel 0 (kaon0L -> pi- + e+ + nu_e) Kinematics type KL3 Decay with BR 0.2027 + [ KaonPhysics ] 1 : Channel 1 (kaon0L -> pi+ + e- + anti_nu_e) Kinematics type KL3 Decay with BR 0.2027 + [ KaonPhysics ] 1 : Channel 2 (kaon0L -> pi0 + pi0 + pi0) Kinematics type Phase Space with BR 0.1952 + [ KaonPhysics ] 1 : Channel 3 (kaon0L -> pi- + mu+ + nu_mu) Kinematics type KL3 Decay with BR 0.1352 + [ KaonPhysics ] 1 : Channel 4 (kaon0L -> pi+ + mu- + anti_nu_mu) Kinematics type KL3 Decay with BR 0.1352 + [ KaonPhysics ] 1 : Channel 5 (kaon0L -> pi0 + pi+ + pi-) Kinematics type Phase Space with BR 0.1254 + [ KaonPhysics ] 1 : Decay details (kaon0S) before setting branching ratios and lifetimes + [ KaonPhysics ] 1 : Decay table details for kaon0S (PDG Lifetime 8.953999999999999e-02) + [ KaonPhysics ] 1 : Channel 0 (kaon0S -> pi+ + pi-) Kinematics type Phase Space with BR 0.692 + [ KaonPhysics ] 1 : Channel 1 (kaon0S -> pi0 + pi0) Kinematics type Phase Space with BR 0.3069 + [ KaonPhysics ] 1 : Decay details (kaon0S) after setting branching ratios and lifetimes + [ KaonPhysics ] 1 : Decay table details for kaon0S (PDG Lifetime 8.953999999999999e-02) + [ KaonPhysics ] 1 : Channel 0 (kaon0S -> pi+ + pi-) Kinematics type Phase Space with BR 0.692 + [ KaonPhysics ] 1 : Channel 1 (kaon0S -> pi0 + pi0) Kinematics type Phase Space with BR 0.3069 +[ RunManager ]: Parallel worlds have been enabled. + [ DetectorConstruction ] 0 : Attaching Tagger_TrackerSD to Tagger_active_Sensor_vol + [ DetectorConstruction ] 0 : Attaching Recoil_TrackerSD to Recoil_l14_active_Sensor_vol + [ DetectorConstruction ] 0 : Attaching Recoil_TrackerSD to Recoil_l56_active_Sensor_vol + [ DetectorConstruction ] 0 : Attaching hcal_sd to back_hcal_scintYVolume + [ DetectorConstruction ] 0 : Attaching hcal_sd to back_hcal_scintXVolume + [ DetectorConstruction ] 0 : Attaching hcal_sd to side_hcal_scintX_0Volume + [ DetectorConstruction ] 0 : Attaching hcal_sd to side_hcal_scintY_0Volume + [ DetectorConstruction ] 0 : Attaching hcal_sd to side_hcal_scintX_1Volume + [ DetectorConstruction ] 0 : Attaching hcal_sd to side_hcal_scintY_1Volume + [ DetectorConstruction ] 0 : Attaching hcal_sd to side_hcal_scintX_2Volume + [ DetectorConstruction ] 0 : Attaching hcal_sd to side_hcal_scintY_2Volume + [ DetectorConstruction ] 0 : Attaching hcal_sd to side_hcal_scintX_3Volume + [ DetectorConstruction ] 0 : Attaching hcal_sd to side_hcal_scintY_3Volume + [ DetectorConstruction ] 0 : Attaching hcal_sd to side_hcal_scintZXVolume + [ DetectorConstruction ] 0 : Attaching hcal_sd to side_hcal_scintZYVolume + [ DetectorConstruction ] 0 : Attaching ecal_sd to Si_volume + [ DetectorConstruction ] 0 : Attaching trig_scint_Target_sd to target + [ DetectorConstruction ] 0 : Attaching trig_scint_Pad1_sd to trigger_pad1_bar_volume + [ DetectorConstruction ] 0 : Attaching trig_scint_Pad2_sd to trigger_pad2_bar_volume + [ DetectorConstruction ] 0 : Attaching trig_scint_Pad3_sd to trigger_pad3_bar_volume + [ DetectorConstruction ] 0 : Attaching ecal_sp to sp_ecal_front_back + [ DetectorConstruction ] 0 : Attaching ecal_sp to sp_ecal_top_bot + [ DetectorConstruction ] 0 : Attaching ecal_sp to sp_ecal_left_right + [ DetectorConstruction ] 0 : Attaching ecal_sp to sp_ecal_front_back + [ DetectorConstruction ] 0 : Attaching ecal_sp to sp_ecal_top_bot + [ DetectorConstruction ] 0 : Attaching ecal_sp to sp_ecal_left_right + [ DetectorConstruction ] 0 : Attaching hcal_sp to sp_hcal_front_back + [ DetectorConstruction ] 0 : Attaching hcal_sp to sp_hcal_top_bot + [ DetectorConstruction ] 0 : Attaching hcal_sp to sp_hcal_left_right + [ DetectorConstruction ] 0 : Attaching hcal_sp to sp_hcal_front_back + [ DetectorConstruction ] 0 : Attaching hcal_sp to sp_hcal_top_bot + [ DetectorConstruction ] 0 : Attaching hcal_sp to sp_hcal_left_right + [ DetectorConstruction ] 0 : Attaching target_sp to sp_target + [ DetectorConstruction ] 0 : Attaching target_sp to sp_target + [ DetectorConstruction ] 0 : Attaching target_sp to sp_target + [ DetectorConstruction ] 0 : Attaching trigScint_sp to sp_trigScint + [ DetectorConstruction ] 0 : Attaching trigScint_sp to sp_trigScint + [ DetectorConstruction ] 0 : Attaching trigScint_sp to sp_trigScint + [ DetectorConstruction ] 0 : Attaching trigScint_sp to sp_trigScint + [ DetectorConstruction ] 0 : Attaching trigScint_sp to sp_trigScint + [ DetectorConstruction ] 0 : Attaching trigScint_sp to sp_trigScint + [ DetectorConstruction ] 0 : Attaching tracker_sp to sp_recoil + [ DetectorConstruction ] 0 : Attaching tracker_sp to sp_recoil + [ DetectorConstruction ] 0 : Attaching tracker_sp to sp_recoil + [ DetectorConstruction ] 0 : Attaching tracker_sp to sp_recoil + [ DetectorConstruction ] 0 : Attaching tracker_sp to sp_recoil + [ DetectorConstruction ] 0 : Attaching tracker_sp to sp_recoil + [ DetectorConstruction ] 0 : Attaching magnet_sp to sp_magnet_gap_top_bot + [ DetectorConstruction ] 0 : Attaching magnet_sp to sp_magnet_gap_left_right + [ DetectorConstruction ] 0 : Attaching magnet_sp to sp_magnet_gap_top_bot + [ DetectorConstruction ] 0 : Attaching magnet_sp to sp_magnet_gap_left_right + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume C_volume_CarbonCoolingPlane + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume nohole_motherboard5_assembly + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume nohole_motherboard6_assembly + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume PCB_volume + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume Glue_volume + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume Si_volume + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume GlueThick_volume + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume CarbonBasePlate_volume + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_0 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_0 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_0 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_1 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_1 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_1 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_2 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_2 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_2 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_3 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_3 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_3 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_4 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_4 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_4 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_5 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_5 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_5 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_6 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_6 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_6 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_7 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_7 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_7 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_8 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_8 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_8 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_9 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_9 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_9 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_10 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_10 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_10 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_11 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_11 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_11 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_12 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_12 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_12 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_13 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_13 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_13 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_14 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_14 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_14 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume strongback_bar_volume_15 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_front_volume_15 + [ DetectorConstruction ] 0 : Attaching biasing operator ecal_bias_pn to volume W_cooling_volume_15 + [ ParallelWorld ] 0 : Adding : sp_target_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_target_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_trigScint_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_trigScint_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_trigScint_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_trigScint_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_trigScint_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_trigScint_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_recoil_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_recoil_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_recoil_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_recoil_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_recoil_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_recoil_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_magnet_gap_top_bot_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_magnet_gap_left_right_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_magnet_gap_top_bot_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_magnet_gap_left_right_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_ecal_front_back_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_ecal_top_bot_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_ecal_left_right_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_ecal_front_back_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_ecal_top_bot_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_ecal_left_right_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_hcal_front_back_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_hcal_top_bot_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_hcal_left_right_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_hcal_front_back_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_hcal_top_bot_PV to parallel world. + [ ParallelWorld ] 0 : Adding : sp_hcal_left_right_PV to parallel world. +[ XsecBiasingOperator ]: Biasing particles of type gamma + [ trigScintClustersPad2 ] 0 : Process starts! + [ trigScintClustersPad3 ] 0 : Process starts! + [ trigScintClustersPad1 ] 0 : Process starts! + [ trigScintTrack ] 0 : Process starts! + [ TrigScintSimPad1 ] 0 : Process starts! + [ TrigScintSimPad2 ] 0 : Process starts! + [ TrigScintSimPad3 ] 0 : Process starts! + [ TrigScintDigiPad1 ] 0 : Process starts! + [ TrigScintDigiPad2 ] 0 : Process starts! + [ TrigScintDigiPad3 ] 0 : Process starts! + [ Process ] 2 : The totalEvents was set, so maxEvents and maxTriesPerEvent will be ignored! + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, -73.4515, 12] + [ ecalVeto ] 0 : Hit 1: [88.1579, -69.2808, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 83.4132, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 87.5839, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9259.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5956.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4283.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, -140.182, 32] + [ ecalVeto ] 0 : Hit 1: [15.92, -136.011, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1562.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 5 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 66.7306, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 62.5599, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 58.3892, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, 54.2186, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 50.0479, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-101.67, -20.8533, 2] + [ ecalVeto ] 0 : Hit 1: [-104.078, -25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3548.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 6 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, -106.817, 21] + [ ecalVeto ] 0 : Hit 1: [-160.396, -102.646, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-141.132, -94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-138.725, -90.1341, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-126.685, -85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-124.277, -81.7928, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -73.4515, 13] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -69.2808, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7070.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 7 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2742.26; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 8 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7286.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 9 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4067.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 10 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -56.7688, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 45.8773, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5920.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 11 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 20.8533, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5790.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 12 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3682.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 13 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4305.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 14 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 18 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1811.44; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 15 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2299.51; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 16 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -102.646, 5] + [ ecalVeto ] 0 : Hit 1: [-52.039, -106.817, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1743.63; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 17 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4129.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 18 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 8: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 10: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 11: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Hit 7: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Hit 8: [9.63173, 33.3653, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3477.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 19 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 75.0719, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 70.9012, 18] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 75.0719, 17] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 70.9012, 16] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 75.0719, 15] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 70.9012, 14] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 66.7306, 13] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 62.5599, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [12.0397, 70.9012, 16] + [ ecalVeto ] 0 : Hit 2: [9.63173, 66.7306, 15] + [ ecalVeto ] 0 : Hit 3: [12.0397, 70.9012, 14] + [ ecalVeto ] 0 : Hit 4: [9.63173, 66.7306, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 66.7306, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 62.5599, 14] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 58.3892, 13] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 54.2186, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 16] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 62.5599, 15] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 58.3892, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5575.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 20 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8220.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 21 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 52.5982, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 50.0479, 22] + [ ecalVeto ] 0 : Hit 1: [-69.83, 45.8773, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 14] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 29.1946, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, 25.024, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3801.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 22 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5847.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 23 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -54.2186, 17] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -50.0479, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, 29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 11] + [ ecalVeto ] 0 : Hit 4: [26.4873, 29.1946, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -54.2186, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4003.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 24 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, -98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [44.8152, -94.3048, 19] + [ ecalVeto ] 0 : Hit 2: [47.2231, -90.1341, 18] + [ ecalVeto ] 0 : Hit 3: [44.8152, -85.9634, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [8.69618, -148.523, 15] + [ ecalVeto ] 0 : Hit 1: [11.1041, -152.694, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, -70.9012, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, -66.7306, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, -62.5599, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -45.8773, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4817.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 25 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 66.7306, 22] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 62.5599, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 62.5599, 20] + [ ecalVeto ] 0 : Hit 1: [-33.711, 58.3892, 19] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 54.2186, 18] + [ ecalVeto ] 0 : Hit 3: [-33.711, 50.0479, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 16] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 45.8773, 15] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 41.7066, 14] + [ ecalVeto ] 0 : Hit 4: [-40.9348, 45.8773, 13] + [ ecalVeto ] 0 : Hit 5: [-38.5269, 41.7066, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 66.7306, 11] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 70.9012, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-89.6303, 25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4912.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 26 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [33.711, 50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [31.3031, 45.8773, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2151.73; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 27 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -12.512, 2] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6757.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 28 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 106.817, 10] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 102.646, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-15.92, 94.3048, 8] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 90.1341, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 83.4132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 79.2426, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 75.0719, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 70.9012, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8196.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 29 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, 98.4754, 22] + [ ecalVeto ] 0 : Hit 1: [44.8152, 94.3048, 21] + [ ecalVeto ] 0 : Hit 2: [47.2231, 98.4754, 20] + [ ecalVeto ] 0 : Hit 3: [44.8152, 94.3048, 19] + [ ecalVeto ] 0 : Hit 4: [47.2231, 90.1341, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [39.9993, 85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [37.5914, 81.7928, 17] + [ ecalVeto ] 0 : Hit 2: [39.9993, 77.6221, 16] + [ ecalVeto ] 0 : Hit 3: [38.5269, 75.0719, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 70.9012, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 66.7306, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, 62.5599, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 41.7066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5602.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 30 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [-33.711, -25.024, 15] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -20.8533, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2625.75; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 31 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4745.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 32 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2270.06; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 33 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3697.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 34 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, -54.2186, 18] + [ ecalVeto ] 0 : Hit 1: [125.749, -54.2186, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4024.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 35 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 115.158, 24] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 110.987, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 98.4754, 22] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 94.3048, 21] + [ ecalVeto ] 0 : Hit 2: [-23.1438, 90.1341, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5593.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 36 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -73.4515, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -62.5599, 14] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -58.3892, 13] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -54.2186, 12] + [ ecalVeto ] 0 : Hit 3: [-48.1586, -50.0479, 13] + [ ecalVeto ] 0 : Hit 4: [-45.7507, -45.8773, 12] + [ ecalVeto ] 0 : Hit 5: [-48.1586, -41.7066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9874.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 37 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 119.329, 23] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 115.158, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 94.3048, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [18.3279, 131.841, 18] + [ ecalVeto ] 0 : Hit 1: [15.92, 127.67, 17] + [ ecalVeto ] 0 : Hit 2: [18.3279, 123.499, 16] + [ ecalVeto ] 0 : Hit 3: [15.92, 119.329, 15] + [ ecalVeto ] 0 : Hit 4: [18.3279, 115.158, 14] + [ ecalVeto ] 0 : Hit 5: [15.92, 110.987, 13] + [ ecalVeto ] 0 : Hit 6: [18.3279, 106.817, 12] + [ ecalVeto ] 0 : Hit 7: [15.92, 102.646, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 25.024, 16] + [ ecalVeto ] 0 : Hit 2: [-82.4065, 29.1946, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 87.5839, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 83.4132, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3575.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 38 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, 165.206, 32] + [ ecalVeto ] 0 : Hit 1: [15.92, 161.035, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [11.1041, 152.694, 30] + [ ecalVeto ] 0 : Hit 1: [8.69618, 148.523, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1817.97; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 39 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 25] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -41.7066, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [141.132, 127.67, 20] + [ ecalVeto ] 0 : Hit 1: [138.725, 123.499, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 79.2426, 20] + [ ecalVeto ] 0 : Hit 1: [9.63173, 75.0719, 19] + [ ecalVeto ] 0 : Hit 2: [12.0397, 79.2426, 18] + [ ecalVeto ] 0 : Hit 3: [9.63173, 75.0719, 17] + [ ecalVeto ] 0 : Hit 4: [12.0397, 70.9012, 16] + [ ecalVeto ] 0 : Hit 5: [9.63173, 66.7306, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 16] + [ ecalVeto ] 0 : Hit 2: [-69.83, -45.8773, 15] + [ ecalVeto ] 0 : Hit 3: [-67.4221, -41.7066, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Hit 4: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 54.2186, 10] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 11: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 12: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 13: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2140.46; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 40 Brem photon produced 86 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5331.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 41 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 12.512, 27] + [ ecalVeto ] 0 : Hit 1: [-108.894, 16.6826, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, -45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, -50.0479, 5] + [ ecalVeto ] 0 : Hit 3: [26.4873, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4184.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 42 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5284.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 43 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2737.63; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 44 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4221.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 45 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, 87.5839, 19] + [ ecalVeto ] 0 : Hit 1: [-166.684, 83.4132, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, 83.4132, 17] + [ ecalVeto ] 0 : Hit 1: [-145.013, 79.2426, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5103.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 46 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-166.684, -33.3653, 22] + [ ecalVeto ] 0 : Hit 1: [-169.092, -29.1946, 21] + [ ecalVeto ] 0 : Hit 2: [-166.684, -25.024, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, -25.024, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5778.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 47 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5098.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 48 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -62.5599, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6627.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 49 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [31.3031, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [31.3031, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6497.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 50 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 37.5359, 25] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 41.7066, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4311.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 51 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5863.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 52 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4688.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 53 Brem photon produced 80 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 114 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6642.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 54 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 54.2186, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 58.3892, 7] + [ ecalVeto ] 0 : Hit 4: [26.4873, 54.2186, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5618.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 55 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, -62.5599, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, -66.7306, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4373.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 56 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3284.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 57 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [84.2776, -20.8533, 30] + [ ecalVeto ] 0 : Hit 1: [84.2776, -20.8533, 28] + [ ecalVeto ] 0 : Hit 2: [81.8697, -25.024, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 8: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3435.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 58 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-138.725, -81.7928, 10] + [ ecalVeto ] 0 : Hit 1: [-140.197, -79.2426, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4931.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 59 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7825.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 60 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2432.3; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 61 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 115 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5922.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 62 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 41.7066, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 13] + [ ecalVeto ] 0 : Hit 4: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 6: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 7: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 8: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 9: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 10: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 11: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 12: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 13: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 14: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 15: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [45.7507, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [48.1586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [45.7507, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [48.1586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5506.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 63 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7136.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 64 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -94.3048, 24] + [ ecalVeto ] 0 : Hit 2: [-76.1183, -90.1341, 23] + [ ecalVeto ] 0 : Hit 3: [-73.7103, -85.9634, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -77.6221, 18] + [ ecalVeto ] 0 : Hit 2: [-61.6707, -73.4515, 17] + [ ecalVeto ] 0 : Hit 3: [-59.2627, -69.2808, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3735.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 65 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5021.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 66 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 7: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 8: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 21 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2752.98; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 67 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, 20.8533, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9395.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 68 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 33.3653, 2] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3868.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 69 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, -77.6221, 26] + [ ecalVeto ] 0 : Hit 1: [38.5269, -75.0719, 25] + [ ecalVeto ] 0 : Hit 2: [40.9348, -70.9012, 24] + [ ecalVeto ] 0 : Hit 3: [38.5269, -66.7306, 23] + [ ecalVeto ] 0 : Hit 4: [40.9348, -70.9012, 22] + [ ecalVeto ] 0 : Hit 5: [38.5269, -66.7306, 21] + [ ecalVeto ] 0 : Hit 6: [40.9348, -70.9012, 20] + [ ecalVeto ] 0 : Hit 7: [38.5269, -66.7306, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2108.17; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 70 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 83.4132, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, 79.2426, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, 75.0719, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, 70.9012, 12] + [ ecalVeto ] 0 : Hit 4: [24.0793, 66.7306, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3130.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 71 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, -186.059, 30] + [ ecalVeto ] 0 : Hit 1: [95.3817, -181.889, 29] + [ ecalVeto ] 0 : Hit 2: [97.7897, -177.718, 28] + [ ecalVeto ] 0 : Hit 3: [95.3817, -173.547, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 90.1341, 16] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 85.9634, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3876.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 72 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-94.4462, -50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [-96.8541, -45.8773, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6957; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 73 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5868.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 74 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3957.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 75 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5623.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 76 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6060.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 77 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3842.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 78 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4615.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 79 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, 106.817, 26] + [ ecalVeto ] 0 : Hit 1: [30.3676, 102.646, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, 119.329, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, 115.158, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 102.646, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 98.4754, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 90.1341, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 15] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4868.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 80 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.34348, -186.059, 31] + [ ecalVeto ] 0 : Hit 1: [3.88031, -181.889, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [23.1438, 123.499, 25] + [ ecalVeto ] 0 : Hit 1: [25.5517, 119.329, 24] + [ ecalVeto ] 0 : Hit 2: [23.1438, 115.158, 23] + [ ecalVeto ] 0 : Hit 3: [25.5517, 110.987, 22] + [ ecalVeto ] 0 : Hit 4: [23.1438, 106.817, 21] + [ ecalVeto ] 0 : Hit 5: [25.5517, 102.646, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -106.817, 21] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -102.646, 20] + [ ecalVeto ] 0 : Hit 2: [-3.88031, -98.4754, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -87.5839, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -83.4132, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 87.5839, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 83.4132, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 79.2426, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, 75.0719, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, 66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 62.5599, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, 58.3892, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, 54.2186, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3515.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 81 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 119.329, 17] + [ ecalVeto ] 0 : Hit 1: [-52.039, 115.158, 16] + [ ecalVeto ] 0 : Hit 2: [-54.4469, 110.987, 15] + [ ecalVeto ] 0 : Hit 3: [-52.039, 106.817, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 90.1341, 11] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 85.9634, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 79.2426, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 75.0719, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4463.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 82 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3912.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 83 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 1] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5091.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 84 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 84 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -66.7306, 30] + [ ecalVeto ] 0 : Hit 1: [45.7507, -62.5599, 29] + [ ecalVeto ] 0 : Hit 2: [48.1586, -58.3892, 28] + [ ecalVeto ] 0 : Hit 3: [45.7507, -54.2186, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, 119.329, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, 115.158, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-112.237, 110.987, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, 106.817, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 90.1341, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1365.15; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 85 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 6: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 8: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Hit 9: [12.0397, 4.17066, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 4] + [ ecalVeto ] 0 : Hit 2: [-74.6459, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-74.6459, -37.5359, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6021.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 86 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -8.34132, 16] + [ ecalVeto ] 0 : Hit 2: [-81.8697, -8.34132, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [25.5517, 85.9634, 2] + [ ecalVeto ] 0 : Hit 1: [24.0793, 83.4132, 1] + [ ecalVeto ] 0 : Hit 2: [25.5517, 85.9634, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7561.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 87 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3478.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 88 Brem photon produced 71 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -102.646, 3] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -106.817, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6207.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 89 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-173.908, -62.5599, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -16.6826, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4249.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 90 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 6: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-205.211, 41.7066, 1] + [ ecalVeto ] 0 : Hit 1: [-202.803, 45.8773, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7552.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 91 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6478.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 92 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3780.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 93 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [88.1579, -136.011, 31] + [ ecalVeto ] 0 : Hit 1: [90.5659, -131.841, 30] + [ ecalVeto ] 0 : Hit 2: [88.1579, -127.67, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [80.9341, -190.23, 31] + [ ecalVeto ] 0 : Hit 1: [83.3421, -186.059, 30] + [ ecalVeto ] 0 : Hit 2: [80.9341, -181.889, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [83.3421, -119.329, 28] + [ ecalVeto ] 0 : Hit 1: [80.9341, -115.158, 27] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [61.6707, -90.1341, 22] + [ ecalVeto ] 0 : Hit 1: [59.2627, -85.9634, 21] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [54.4469, -77.6221, 20] + [ ecalVeto ] 0 : Hit 1: [52.039, -73.4515, 19] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3454.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 94 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6183.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 95 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, 123.499, 31] + [ ecalVeto ] 0 : Hit 1: [-145.948, 119.329, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-141.132, 110.987, 29] + [ ecalVeto ] 0 : Hit 1: [-138.725, 106.817, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-133.909, 98.4754, 27] + [ ecalVeto ] 0 : Hit 1: [-131.501, 94.3048, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-126.685, 85.9634, 25] + [ ecalVeto ] 0 : Hit 1: [-124.277, 81.7928, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-109.829, 81.7928, 22] + [ ecalVeto ] 0 : Hit 1: [-112.237, 77.6221, 21] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 77.6221, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 73.4515, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 65.1101, 16] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 60.9395, 15] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3202.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 96 Brem photon produced 64 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6628.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 97 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [69.83, 12.512, 16] + [ ecalVeto ] 0 : Hit 1: [67.4221, 8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [67.4221, 8.34132, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [40.9348, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [38.5269, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [40.9348, 20.8533, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 66.7306, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5905.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 98 Brem photon produced 85 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 128 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6612.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 99 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5480.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 100 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-173.908, -20.8533, 28] + [ ecalVeto ] 0 : Hit 1: [-176.316, -16.6826, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, -29.1946, 27] + [ ecalVeto ] 0 : Hit 1: [-137.789, -33.3653, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -25.024, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3642.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 101 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 81.7928, 25] + [ ecalVeto ] 0 : Hit 1: [-102.606, 85.9634, 24] + [ ecalVeto ] 0 : Hit 2: [-105.013, 81.7928, 23] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3620.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 102 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -161.035, 3] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -165.206, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9642.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 103 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2469.79; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 104 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5025.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 105 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, 20.8533, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4676.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 106 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 21] + [ ecalVeto ] 0 : Hit 2: [26.4873, -12.512, 20] + [ ecalVeto ] 0 : Hit 3: [24.0793, -8.34132, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 2: [16.8555, 4.17066, 15] + [ ecalVeto ] 0 : Hit 3: [19.2635, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 4: [16.8555, 4.17066, 13] + [ ecalVeto ] 0 : Hit 5: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Hit 6: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Hit 7: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 8: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4854.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 107 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 33.3653, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4495.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 108 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, -115.158, 29] + [ ecalVeto ] 0 : Hit 1: [-160.396, -110.987, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-148.356, -106.817, 27] + [ ecalVeto ] 0 : Hit 1: [-145.948, -102.646, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-95.3817, -98.4754, 26] + [ ecalVeto ] 0 : Hit 1: [-97.7897, -94.3048, 25] + [ ecalVeto ] 0 : Hit 2: [-95.3817, -90.1341, 24] + [ ecalVeto ] 0 : Hit 3: [-97.7897, -94.3048, 23] + [ ecalVeto ] 0 : Hit 4: [-95.3817, -90.1341, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-102.606, -94.3048, 22] + [ ecalVeto ] 0 : Hit 1: [-105.013, -98.4754, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3146.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 109 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 50.0479, 22] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 45.8773, 21] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 41.7066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -2.66454e-15, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -81.7928, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5351.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 110 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-137.789, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-140.197, -20.8533, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3375.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 111 Brem photon produced 84 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6282.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 112 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4840.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 113 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1428.88; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 114 Brem photon produced 77 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -50.0479, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5106.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 115 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, -94.3048, 9] + [ ecalVeto ] 0 : Hit 1: [32.7755, -90.1341, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-19.2635, 25.024, 3] + [ ecalVeto ] 0 : Hit 7: [-16.8555, 29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 29.1946, 1] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 33.3653, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 20.8533, 1] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4551.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 116 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, -81.7928, 26] + [ ecalVeto ] 0 : Hit 1: [44.8152, -77.6221, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, -66.7306, 23] + [ ecalVeto ] 0 : Hit 1: [40.9348, -62.5599, 22] + [ ecalVeto ] 0 : Hit 2: [38.5269, -58.3892, 21] + [ ecalVeto ] 0 : Hit 3: [40.9348, -54.2186, 20] + [ ecalVeto ] 0 : Hit 4: [38.5269, -50.0479, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, -29.1946, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2701.08; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 117 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10245.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 118 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, 115.158, 18] + [ ecalVeto ] 0 : Hit 1: [73.7103, 110.987, 17] + [ ecalVeto ] 0 : Hit 2: [76.1183, 106.817, 16] + [ ecalVeto ] 0 : Hit 3: [73.7103, 102.646, 15] + [ ecalVeto ] 0 : Hit 4: [76.1183, 98.4754, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3850.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 119 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-152.237, 33.3653, 28] + [ ecalVeto ] 0 : Hit 1: [-154.644, 29.1946, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6697.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 120 Brem photon produced 71 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [-40.9348, -4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5566.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 121 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3530.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 122 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [-82.4065, 12.512, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7017.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 123 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, -12.512, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, -16.6826, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, -12.512, 17] + [ ecalVeto ] 0 : Hit 4: [31.3031, -12.512, 15] + [ ecalVeto ] 0 : Hit 5: [26.4873, -12.512, 16] + [ ecalVeto ] 0 : Hit 6: [26.4873, -12.512, 14] + [ ecalVeto ] 0 : Hit 7: [24.0793, -8.34132, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 45.8773, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [33.711, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [31.3031, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [33.711, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8314.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 124 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8462.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 125 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3225.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 126 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, 90.1341, 20] + [ ecalVeto ] 0 : Hit 1: [88.1579, 85.9634, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [68.8945, 77.6221, 16] + [ ecalVeto ] 0 : Hit 1: [66.4865, 73.4515, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2037.73; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 127 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -58.3892, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, -54.2186, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, -50.0479, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, -45.8773, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 98.4754, 9] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 94.3048, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 37.5359, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9030.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 128 Brem photon produced 70 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3951.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 129 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -79.2426, 19] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 18] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -70.9012, 17] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -66.7306, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, -77.6221, 15] + [ ecalVeto ] 0 : Hit 1: [-124.277, -73.4515, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -45.8773, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, -66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-116.118, -62.5599, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7193.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 130 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, -169.377, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, -165.206, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 4] + [ ecalVeto ] 0 : Hit 2: [-33.711, -41.7066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9558.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 131 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3662.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 132 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [45.7507, -54.2186, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6971.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 133 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -62.5599, 26] + [ ecalVeto ] 0 : Hit 1: [9.63173, -58.3892, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [37.5914, -148.523, 25] + [ ecalVeto ] 0 : Hit 1: [39.9993, -144.353, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [12.0397, -45.8773, 22] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 21] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 20] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 19] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 18] + [ ecalVeto ] 0 : Hit 6: [9.63173, -25.024, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 18] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 17] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 16] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 15] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 8: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 9: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 10: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 11: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 12: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 13: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 14: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 62.5599, 2] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 58.3892, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5706.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 134 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6129.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 135 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, -127.67, 31] + [ ecalVeto ] 0 : Hit 1: [-138.725, -123.499, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, -115.158, 29] + [ ecalVeto ] 0 : Hit 1: [-131.501, -110.987, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-126.685, -102.646, 27] + [ ecalVeto ] 0 : Hit 1: [-124.277, -98.4754, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-119.461, -98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-117.053, -94.3048, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-105.013, -90.1341, 23] + [ ecalVeto ] 0 : Hit 1: [-102.606, -85.9634, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -85.9634, 21] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -81.7928, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -77.6221, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -65.1101, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -60.9395, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -58.3892, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5803.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 136 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4427.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 137 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3132.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 138 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -8.34132, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5924.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 139 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4103.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 140 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -106.817, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, -102.646, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, -98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, -94.3048, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [105.013, 106.817, 20] + [ ecalVeto ] 0 : Hit 1: [102.606, 102.646, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -90.1341, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 83.4132, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 87.5839, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -81.7928, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -77.6221, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -73.4515, 13] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -69.2808, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -69.2808, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -66.7306, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [62.6062, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [60.1983, 12.512, 7] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [45.7507, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [48.1586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [45.7507, -12.512, 5] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-33.711, -58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-33.711, -58.3892, 5] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -62.5599, 4] + [ ecalVeto ] 0 : Hit 3: [-33.711, -66.7306, 3] + [ ecalVeto ] 0 : Hit 4: [-31.3031, -70.9012, 2] + [ ecalVeto ] 0 : Hit 5: [-33.711, -75.0719, 1] + [ ecalVeto ] 0 : Hit 6: [-31.3031, -79.2426, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 111 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6990.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 141 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 16 + [ ecalVeto ] 0 : Beginning track merging using 16 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [89.0935, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [89.6303, 50.0479, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [67.4221, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [69.83, 37.5359, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 12: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Hit 13: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Hit 14: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 15: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -70.9012, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -66.7306, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -62.5599, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [40.9348, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [38.5269, 8.34132, 7] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5227.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 142 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [48.1586, 41.7066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8103.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 143 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -60.9395, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -58.3892, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -62.5599, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3422.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 144 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3869.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 145 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 148.523, 27] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 144.353, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 127.67, 25] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 123.499, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-162.804, 165.206, 23] + [ ecalVeto ] 0 : Hit 1: [-160.396, 169.377, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 81.7928, 18] + [ ecalVeto ] 0 : Hit 2: [-39.9993, 77.6221, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-112.237, 136.011, 19] + [ ecalVeto ] 0 : Hit 1: [-109.829, 131.841, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 127.67, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 123.499, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 110.987, 15] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 106.817, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6087.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 146 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 24 + [ ecalVeto ] 0 : Beginning track merging using 24 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 20 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 18] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 15] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 14] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 29.1946, 12] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 25.024, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 12] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 12] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 10: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 11: [4.81586, 8.34132, 0] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [55.3824, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [52.9745, -33.3653, 9] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [48.1586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [45.7507, -20.8533, 9] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [38.5269, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 20 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6888.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 147 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, -152.694, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, -148.523, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6237.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 148 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5524.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 149 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4478.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 150 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-74.6459, 4.17066, 22] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 20] + [ ecalVeto ] 0 : Hit 2: [-77.0538, 8.34132, 19] + [ ecalVeto ] 0 : Hit 3: [-74.6459, 12.512, 18] + [ ecalVeto ] 0 : Hit 4: [-67.4221, 8.34132, 20] + [ ecalVeto ] 0 : Hit 5: [-69.83, 12.512, 19] + [ ecalVeto ] 0 : Hit 6: [-67.4221, 8.34132, 18] + [ ecalVeto ] 0 : Hit 7: [-69.83, 4.17066, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 8.34132, 20] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 4.17066, 19] + [ ecalVeto ] 0 : Hit 2: [-82.4065, 4.17066, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 8.34132, 17] + [ ecalVeto ] 0 : Hit 2: [-60.1983, 12.512, 16] + [ ecalVeto ] 0 : Hit 3: [-67.4221, 16.6826, 18] + [ ecalVeto ] 0 : Hit 4: [-69.83, 12.512, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-141.132, 177.718, 19] + [ ecalVeto ] 0 : Hit 1: [-138.725, 173.547, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-119.461, 148.523, 15] + [ ecalVeto ] 0 : Hit 1: [-117.053, 144.353, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 98.4754, 9] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 94.3048, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6621.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 151 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5256.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 152 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [40.9348, 54.2186, 16] + [ ecalVeto ] 0 : Hit 2: [38.5269, 50.0479, 15] + [ ecalVeto ] 0 : Hit 3: [40.9348, 45.8773, 14] + [ ecalVeto ] 0 : Hit 4: [38.5269, 41.7066, 13] + [ ecalVeto ] 0 : Hit 5: [33.711, 41.7066, 14] + [ ecalVeto ] 0 : Hit 6: [33.711, 41.7066, 12] + [ ecalVeto ] 0 : Hit 7: [31.3031, 37.5359, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4907.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 153 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -85.9634, 8] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -81.7928, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -77.6221, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -75.0719, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 8: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 9: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4871.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 154 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-154.644, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-152.237, -2.36672e-14, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -62.5599, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6119.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 155 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1718.71; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 156 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 50.0479, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 45.8773, 6] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5886.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 157 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -106.817, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, -102.646, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -90.1341, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [68.8945, 102.646, 18] + [ ecalVeto ] 0 : Hit 1: [66.4865, 98.4754, 17] + [ ecalVeto ] 0 : Hit 2: [68.8945, 94.3048, 16] + [ ecalVeto ] 0 : Hit 3: [66.4865, 90.1341, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [47.2231, 98.4754, 16] + [ ecalVeto ] 0 : Hit 1: [44.8152, 94.3048, 15] + [ ecalVeto ] 0 : Hit 2: [47.2231, 90.1341, 14] + [ ecalVeto ] 0 : Hit 3: [44.8152, 85.9634, 13] + [ ecalVeto ] 0 : Hit 4: [47.2231, 81.7928, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [54.4469, 94.3048, 14] + [ ecalVeto ] 0 : Hit 1: [52.039, 90.1341, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4797.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 158 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7546.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 159 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [26.4873, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6066.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 160 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-116.118, -12.512, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 9] + [ ecalVeto ] 0 : Hit 1: [-101.67, 4.17066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2583.97; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 161 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4585.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 162 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4132.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 163 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, 54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [48.1586, 58.3892, 14] + [ ecalVeto ] 0 : Hit 2: [45.7507, 54.2186, 13] + [ ecalVeto ] 0 : Hit 3: [48.1586, 58.3892, 12] + [ ecalVeto ] 0 : Hit 4: [45.7507, 54.2186, 11] + [ ecalVeto ] 0 : Hit 5: [48.1586, 50.0479, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5156.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 164 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 2] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5897.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 165 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -8.34132, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5702.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 166 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 26] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 25] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 24] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 23] + [ ecalVeto ] 0 : Hit 4: [16.8555, 4.17066, 21] + [ ecalVeto ] 0 : Hit 5: [16.8555, 4.17066, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 22] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 20] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 18] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 16] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 6: [12.0397, -4.17066, 14] + [ ecalVeto ] 0 : Hit 7: [9.63173, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 8: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 9: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 10: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 11: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 12: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 13: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 14: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 15: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -25.024, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2540.08; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 167 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8570.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 168 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4312.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 169 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 24] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 23] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 22] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 21] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 25.024, 20] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 25.024, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3740.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 170 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 60.9395, 15] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 65.1101, 14] + [ ecalVeto ] 0 : Hit 2: [-80.9341, 65.1101, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, 12.512, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5994.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 171 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 33] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 31] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 30] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 21] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 20] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 19] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 18] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 17] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 16] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 15] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 9: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 10: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 7: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 8: [9.63173, -25.024, 1] + [ ecalVeto ] 0 : Hit 9: [12.0397, -29.1946, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [40.9348, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [40.9348, -54.2186, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4464.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 172 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4519.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 173 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, 4.17066, 29] + [ ecalVeto ] 0 : Hit 1: [-137.789, 8.34132, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 12.512, 27] + [ ecalVeto ] 0 : Hit 1: [-123.341, 8.34132, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, 12.512, 25] + [ ecalVeto ] 0 : Hit 1: [-108.894, 8.34132, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 8.34132, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 12.512, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4439.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 174 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -54.2186, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4160.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 175 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 62.5599, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 54.2186, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 54.2186, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-108.894, -41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [-111.302, -45.8773, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [38.5269, 33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [40.9348, 29.1946, 2] + [ ecalVeto ] 0 : Hit 2: [38.5269, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5091.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 176 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -41.7066, 2] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -37.5359, 1] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -41.7066, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4199.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 177 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 22] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 45.8773, 21] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 41.7066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 37.5359, 18] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 17] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 29.1946, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2898.49; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 178 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -79.2426, 21] + [ ecalVeto ] 0 : Hit 1: [4.81586, -83.4132, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -91.7545, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -87.5839, 18] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -83.4132, 17] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -79.2426, 16] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -75.0719, 15] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -70.9012, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 8: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 9: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 10: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4627.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 179 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6125.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 180 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, 85.9634, 29] + [ ecalVeto ] 0 : Hit 1: [-124.277, 81.7928, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [52.9745, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [52.9745, 25.024, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [45.7507, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [45.7507, 29.1946, 3] + [ ecalVeto ] 0 : Hit 2: [40.9348, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [40.9348, 29.1946, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -83.4132, 1] + [ ecalVeto ] 0 : Hit 1: [12.0397, -87.5839, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3221.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 181 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4642.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 182 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2310.99; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 183 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-219.659, -2.36672e-14, 33] + [ ecalVeto ] 0 : Hit 1: [-217.251, 4.17066, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, 16.6826, 27] + [ ecalVeto ] 0 : Hit 1: [-159.46, 12.512, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4660.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 184 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8670.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 185 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -102.646, 27] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -106.817, 26] + [ ecalVeto ] 0 : Hit 2: [-68.8945, -110.987, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -110.987, 24] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -115.158, 23] + [ ecalVeto ] 0 : Hit 2: [-73.7103, -110.987, 22] + [ ecalVeto ] 0 : Hit 3: [-73.7103, -110.987, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [88.1579, 94.3048, 21] + [ ecalVeto ] 0 : Hit 1: [88.1579, 94.3048, 19] + [ ecalVeto ] 0 : Hit 2: [88.1579, 102.646, 21] + [ ecalVeto ] 0 : Hit 3: [88.1579, 102.646, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [97.7897, 102.646, 20] + [ ecalVeto ] 0 : Hit 1: [95.3817, 98.4754, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [83.3421, 85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [80.9341, 81.7928, 17] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -94.3048, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [68.8945, 60.9395, 16] + [ ecalVeto ] 0 : Hit 1: [67.4221, 58.3892, 15] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3979.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 186 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -45.8773, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5791.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 187 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7611.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 188 Brem photon produced 70 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, -12.512, 24] + [ ecalVeto ] 0 : Hit 1: [52.9745, -8.34132, 23] + [ ecalVeto ] 0 : Hit 2: [52.9745, -8.34132, 21] + [ ecalVeto ] 0 : Hit 3: [52.9745, -8.34132, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, -8.34132, 22] + [ ecalVeto ] 0 : Hit 1: [48.1586, -8.34132, 20] + [ ecalVeto ] 0 : Hit 2: [48.1586, -8.34132, 18] + [ ecalVeto ] 0 : Hit 3: [45.7507, -12.512, 17] + [ ecalVeto ] 0 : Hit 4: [48.1586, -8.34132, 16] + [ ecalVeto ] 0 : Hit 5: [45.7507, -12.512, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5888.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 189 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-69.83, 29.1946, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 16.6826, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-33.711, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-33.711, 8.34132, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5799.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 190 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4561.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 191 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4395.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 192 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 123.499, 19] + [ ecalVeto ] 0 : Hit 1: [-15.92, 119.329, 18] + [ ecalVeto ] 0 : Hit 2: [-18.3279, 115.158, 17] + [ ecalVeto ] 0 : Hit 3: [-15.92, 110.987, 16] + [ ecalVeto ] 0 : Hit 4: [-18.3279, 106.817, 15] + [ ecalVeto ] 0 : Hit 5: [-15.92, 102.646, 14] + [ ecalVeto ] 0 : Hit 6: [-18.3279, 98.4754, 13] + [ ecalVeto ] 0 : Hit 7: [-15.92, 94.3048, 12] + [ ecalVeto ] 0 : Hit 8: [-18.3279, 90.1341, 11] + [ ecalVeto ] 0 : Hit 9: [-16.8555, 87.5839, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [67.4221, 25.024, 15] + [ ecalVeto ] 0 : Hit 2: [69.83, 29.1946, 14] + [ ecalVeto ] 0 : Hit 3: [67.4221, 33.3653, 13] + [ ecalVeto ] 0 : Hit 4: [69.83, 37.5359, 12] + [ ecalVeto ] 0 : Hit 5: [67.4221, 41.7066, 11] + [ ecalVeto ] 0 : Hit 6: [69.83, 45.8773, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 79.2426, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 75.0719, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 70.9012, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 66.7306, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4053.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 193 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [77.0538, -50.0479, 22] + [ ecalVeto ] 0 : Hit 1: [77.0538, -50.0479, 20] + [ ecalVeto ] 0 : Hit 2: [74.6459, -45.8773, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2668.87; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 194 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 123.499, 26] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 119.329, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 106.817, 24] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 102.646, 23] + [ ecalVeto ] 0 : Hit 2: [-8.69618, 98.4754, 22] + [ ecalVeto ] 0 : Hit 3: [-11.1041, 94.3048, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -98.4754, 7] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -102.646, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5150.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 195 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-116.118, -54.2186, 28] + [ ecalVeto ] 0 : Hit 1: [-118.525, -50.0479, 27] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2335.69; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 196 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 198.571, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 202.742, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6685.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 197 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1751.44; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 198 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 198 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [147.421, 16.6826, 30] + [ ecalVeto ] 0 : Hit 1: [145.013, 12.512, 29] + [ ecalVeto ] 0 : Hit 2: [147.421, 8.34132, 28] + [ ecalVeto ] 0 : Hit 3: [145.013, 4.17066, 27] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3484.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 199 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 75.0719, 23] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 75.0719, 21] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 70.9012, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 54.2186, 15] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 50.0479, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3918.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 200 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 17] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 16] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 15] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 14] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4452.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 201 Brem photon produced 86 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5806.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 202 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, -115.158, 22] + [ ecalVeto ] 0 : Hit 1: [102.606, -110.987, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 94.3048, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 87.5839, 18] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 83.4132, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 70.9012, 15] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 66.7306, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -60.9395, 13] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -56.7688, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [-33.711, 33.3653, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 0] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3530.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 203 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, 66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [52.9745, 66.7306, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, 41.7066, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7600.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 204 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 18] + [ ecalVeto ] 0 : Hit 2: [-69.83, 20.8533, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -41.7066, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -29.1946, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6604.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 205 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -33.3653, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2659.65; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 206 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5836.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 207 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 127.67, 27] + [ ecalVeto ] 0 : Hit 1: [-109.829, 123.499, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 77.6221, 23] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 73.4515, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 22] + [ ecalVeto ] 0 : Hit 2: [-77.0538, -25.024, 21] + [ ecalVeto ] 0 : Hit 3: [-74.6459, -20.8533, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4962.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 208 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4028.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 209 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 10: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 11: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3876.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 210 Brem photon produced 5 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -69.2808, 25] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -65.1101, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5388.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 211 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 79.2426, 28] + [ ecalVeto ] 0 : Hit 1: [24.0793, 75.0719, 27] + [ ecalVeto ] 0 : Hit 2: [26.4873, 70.9012, 26] + [ ecalVeto ] 0 : Hit 3: [24.0793, 66.7306, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -98.4754, 23] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -94.3048, 22] + [ ecalVeto ] 0 : Hit 2: [-32.7755, -90.1341, 21] + [ ecalVeto ] 0 : Hit 3: [-30.3676, -85.9634, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 58.3892, 22] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 21] + [ ecalVeto ] 0 : Hit 2: [19.2635, 50.0479, 20] + [ ecalVeto ] 0 : Hit 3: [16.8555, 45.8773, 19] + [ ecalVeto ] 0 : Hit 4: [19.2635, 50.0479, 18] + [ ecalVeto ] 0 : Hit 5: [16.8555, 45.8773, 17] + [ ecalVeto ] 0 : Hit 6: [19.2635, 41.7066, 16] + [ ecalVeto ] 0 : Hit 7: [16.8555, 37.5359, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -79.2426, 19] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 18] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -70.9012, 17] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -66.7306, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1671.2; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 212 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 20] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -41.7066, 18] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -62.5599, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6701.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 213 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [44.8152, -144.353, 27] + [ ecalVeto ] 0 : Hit 1: [47.2231, -140.182, 26] + [ ecalVeto ] 0 : Hit 2: [44.8152, -136.011, 25] + [ ecalVeto ] 0 : Hit 3: [47.2231, -131.841, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [44.8152, -119.329, 23] + [ ecalVeto ] 0 : Hit 1: [47.2231, -115.158, 22] + [ ecalVeto ] 0 : Hit 2: [44.8152, -110.987, 21] + [ ecalVeto ] 0 : Hit 3: [47.2231, -106.817, 20] + [ ecalVeto ] 0 : Hit 4: [44.8152, -102.646, 19] + [ ecalVeto ] 0 : Hit 5: [47.2231, -98.4754, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2381.58; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 214 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, -165.206, 27] + [ ecalVeto ] 0 : Hit 1: [-145.948, -161.035, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [54.4469, -127.67, 22] + [ ecalVeto ] 0 : Hit 1: [52.039, -123.499, 21] + [ ecalVeto ] 0 : Hit 2: [54.4469, -127.67, 20] + [ ecalVeto ] 0 : Hit 3: [52.039, -123.499, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4114.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 215 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2893.18; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 216 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6123.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 217 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-116.118, -62.5599, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5678.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 218 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 54.2186, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 58.3892, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 54.2186, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3632.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 219 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, 106.817, 31] + [ ecalVeto ] 0 : Hit 1: [-145.948, 102.646, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [119.461, -106.817, 22] + [ ecalVeto ] 0 : Hit 1: [117.053, -102.646, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [105.013, -98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [102.606, -94.3048, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [97.7897, -77.6221, 20] + [ ecalVeto ] 0 : Hit 1: [95.3817, -73.4515, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [97.7897, -85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [95.3817, -81.7928, 17] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [90.5659, -73.4515, 18] + [ ecalVeto ] 0 : Hit 1: [88.1579, -69.2808, 17] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [83.3421, -60.9395, 16] + [ ecalVeto ] 0 : Hit 1: [80.9341, -56.7688, 15] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2523.62; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 220 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 14610.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 221 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [45.7507, 54.2186, 15] + [ ecalVeto ] 0 : Hit 2: [48.1586, 50.0479, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -41.7066, 2] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -37.5359, 1] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -33.3653, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 6: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 7: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [48.1586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [48.1586, 25.024, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7232.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 222 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3719.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 223 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 18] + [ ecalVeto ] 0 : Hit 2: [-77.0538, 25.024, 17] + [ ecalVeto ] 0 : Hit 3: [-74.6459, 29.1946, 16] + [ ecalVeto ] 0 : Hit 4: [-77.0538, 25.024, 15] + [ ecalVeto ] 0 : Hit 5: [-74.6459, 20.8533, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 6: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, 8.34132, 2] + [ ecalVeto ] 0 : Hit 4: [16.8555, 12.512, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 8.34132, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11020.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 224 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, -110.987, 26] + [ ecalVeto ] 0 : Hit 1: [8.69618, -106.817, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -87.5839, 23] + [ ecalVeto ] 0 : Hit 1: [19.2635, -83.4132, 22] + [ ecalVeto ] 0 : Hit 2: [16.8555, -79.2426, 21] + [ ecalVeto ] 0 : Hit 3: [19.2635, -75.0719, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [31.3031, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [31.3031, -62.5599, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -70.9012, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -58.3892, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4159.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 225 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, 66.7306, 25] + [ ecalVeto ] 0 : Hit 1: [54.4469, 69.2808, 24] + [ ecalVeto ] 0 : Hit 2: [52.039, 73.4515, 23] + [ ecalVeto ] 0 : Hit 3: [54.4469, 77.6221, 22] + [ ecalVeto ] 0 : Hit 4: [54.4469, 77.6221, 20] + [ ecalVeto ] 0 : Hit 5: [52.039, 73.4515, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [47.2231, 73.4515, 18] + [ ecalVeto ] 0 : Hit 1: [45.7507, 70.9012, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, 70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, 66.7306, 15] + [ ecalVeto ] 0 : Hit 2: [40.9348, 62.5599, 14] + [ ecalVeto ] 0 : Hit 3: [38.5269, 58.3892, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6552.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 226 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 45.8773, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 12] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 20.8533, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 37.5359, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6663.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 227 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, 4.17066, 20] + [ ecalVeto ] 0 : Hit 1: [52.9745, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 2: [52.9745, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 3: [48.1586, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 4: [48.1586, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 5: [45.7507, -4.17066, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -8.34132, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [40.9348, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, -8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [40.9348, -12.512, 12] + [ ecalVeto ] 0 : Hit 3: [38.5269, -16.6826, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4880.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 228 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [45.7507, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [45.7507, -4.17066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4011.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 229 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [26.4873, 54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [24.0793, 50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [26.4873, 54.2186, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6279.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 230 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -12.512, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [26.4873, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5204.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 231 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5265.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 232 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5802.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 233 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -173.547, 11] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -177.718, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -58.3892, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -54.2186, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4302.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 234 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [38.5269, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5160.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 235 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 148.523, 30] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 144.353, 29] + [ ecalVeto ] 0 : Hit 2: [-37.5914, 140.182, 28] + [ ecalVeto ] 0 : Hit 3: [-39.9993, 136.011, 27] + [ ecalVeto ] 0 : Hit 4: [-37.5914, 131.841, 26] + [ ecalVeto ] 0 : Hit 5: [-39.9993, 127.67, 25] + [ ecalVeto ] 0 : Hit 6: [-37.5914, 123.499, 24] + [ ecalVeto ] 0 : Hit 7: [-39.9993, 119.329, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 110.987, 22] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 106.817, 21] + [ ecalVeto ] 0 : Hit 2: [-44.8152, 102.646, 20] + [ ecalVeto ] 0 : Hit 3: [-47.2231, 98.4754, 19] + [ ecalVeto ] 0 : Hit 4: [-44.8152, 94.3048, 18] + [ ecalVeto ] 0 : Hit 5: [-47.2231, 90.1341, 17] + [ ecalVeto ] 0 : Hit 6: [-44.8152, 85.9634, 16] + [ ecalVeto ] 0 : Hit 7: [-47.2231, 81.7928, 15] + [ ecalVeto ] 0 : Hit 8: [-44.8152, 77.6221, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3179; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 236 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 37.5359, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 66.7306, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 62.5599, 5] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 66.7306, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 1] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4049.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 237 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4454; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 238 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6392.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 239 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4465.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 240 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, -77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, -73.4515, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -45.8773, 18] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -41.7066, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -56.7688, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -54.2186, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -37.5359, 11] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -33.3653, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2692.74; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 241 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, 29.1946, 29] + [ ecalVeto ] 0 : Hit 1: [-166.684, 33.3653, 28] + [ ecalVeto ] 0 : Hit 2: [-169.092, 37.5359, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 52.5982, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 58.3892, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [33.711, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [31.3031, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [33.711, 41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [31.3031, 37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [33.711, 33.3653, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [26.4873, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [26.4873, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [24.0793, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5645.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 242 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 4.17066, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 8: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Hit 9: [4.81586, -2.66454e-15, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5780.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 243 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -85.9634, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5210.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 244 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [141.132, 102.646, 32] + [ ecalVeto ] 0 : Hit 1: [138.725, 98.4754, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [126.685, 85.9634, 28] + [ ecalVeto ] 0 : Hit 1: [124.277, 81.7928, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -56.7688, 11] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -52.5982, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2463.83; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 245 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5294.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 246 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 29.1946, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3945.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 247 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 8: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 9: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 10: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8759.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 248 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 9 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1292; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 249 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, -2.66454e-15, 21] + [ ecalVeto ] 0 : Hit 1: [69.83, 4.17066, 20] + [ ecalVeto ] 0 : Hit 2: [67.4221, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 3: [69.83, -4.17066, 18] + [ ecalVeto ] 0 : Hit 4: [69.83, -4.17066, 16] + [ ecalVeto ] 0 : Hit 5: [67.4221, -8.34132, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6823.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 250 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 24] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 23] + [ ecalVeto ] 0 : Hit 2: [26.4873, 54.2186, 22] + [ ecalVeto ] 0 : Hit 3: [24.0793, 50.0479, 21] + [ ecalVeto ] 0 : Hit 4: [26.4873, 45.8773, 20] + [ ecalVeto ] 0 : Hit 5: [24.0793, 41.7066, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9328.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 251 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 16] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 15] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 8: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 9: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 10: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4844.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 252 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 65.1101, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5090.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 253 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-217.251, -62.5599, 28] + [ ecalVeto ] 0 : Hit 1: [-219.659, -66.7306, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2172.02; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 254 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3590.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 255 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 10: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -12.512, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7756.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 256 Brem photon produced 97 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5743.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 257 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, 75.0719, 25] + [ ecalVeto ] 0 : Hit 1: [-159.46, 79.2426, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, 91.7545, 25] + [ ecalVeto ] 0 : Hit 1: [-159.46, 87.5839, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-169.092, 62.5599, 25] + [ ecalVeto ] 0 : Hit 1: [-166.684, 58.3892, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-119.461, 73.4515, 21] + [ ecalVeto ] 0 : Hit 1: [-117.053, 77.6221, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3861.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 258 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-109.829, 98.4754, 6] + [ ecalVeto ] 0 : Hit 1: [-112.237, 94.3048, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4374.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 259 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -45.8773, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -41.7066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2395.62; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 260 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5799.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 261 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3446.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 262 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [-69.83, 20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 45.8773, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5472.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 263 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 94.3048, 10] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 94.3048, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [33.711, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [31.3031, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [33.711, 33.3653, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-160.396, -119.329, 4] + [ ecalVeto ] 0 : Hit 1: [-160.396, -119.329, 2] + [ ecalVeto ] 0 : Hit 2: [-162.804, -115.158, 1] + [ ecalVeto ] 0 : Hit 3: [-160.396, -110.987, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 2] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 1] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6430.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 264 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2314.28; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 265 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 33.3653, 33] + [ ecalVeto ] 0 : Hit 1: [26.4873, 29.1946, 32] + [ ecalVeto ] 0 : Hit 2: [24.0793, 25.024, 31] + [ ecalVeto ] 0 : Hit 3: [26.4873, 20.8533, 30] + [ ecalVeto ] 0 : Hit 4: [26.4873, 20.8533, 28] + [ ecalVeto ] 0 : Hit 5: [24.0793, 16.6826, 27] + [ ecalVeto ] 0 : Hit 6: [26.4873, 12.512, 26] + [ ecalVeto ] 0 : Hit 7: [24.0793, 16.6826, 25] + [ ecalVeto ] 0 : Hit 8: [26.4873, 20.8533, 24] + [ ecalVeto ] 0 : Hit 9: [24.0793, 16.6826, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-169.092, 79.2426, 21] + [ ecalVeto ] 0 : Hit 1: [-166.684, 75.0719, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [12.0397, -45.8773, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 8: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 9: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 10: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 11: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-111.302, 54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, 50.0479, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6444.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 266 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5783.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 267 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, -98.4754, 32] + [ ecalVeto ] 0 : Hit 1: [88.1579, -94.3048, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [83.3421, -94.3048, 30] + [ ecalVeto ] 0 : Hit 1: [80.9341, -90.1341, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3120.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 268 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [116.118, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [118.525, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [116.118, 54.2186, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4125.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 269 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 13 + [ ecalVeto ] 0 : Beginning track merging using 13 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 4.17066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-69.83, 12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 16.6826, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 4.17066, 4] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6203.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 270 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5486.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 271 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3357.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 272 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, -33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [62.6062, -33.3653, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -62.5599, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5432.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 273 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -8.34132, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, -12.512, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -25.024, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [61.6707, -73.4515, 20] + [ ecalVeto ] 0 : Hit 1: [59.2627, -69.2808, 19] + [ ecalVeto ] 0 : Hit 2: [61.6707, -65.1101, 18] + [ ecalVeto ] 0 : Hit 3: [60.1983, -62.5599, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -75.0719, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -79.2426, 14] + [ ecalVeto ] 0 : Hit 2: [-32.7755, -81.7928, 13] + [ ecalVeto ] 0 : Hit 3: [-30.3676, -85.9634, 12] + [ ecalVeto ] 0 : Hit 4: [-32.7755, -90.1341, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -54.2186, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4580.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 274 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 110.987, 21] + [ ecalVeto ] 0 : Hit 1: [-138.725, 106.817, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, 102.646, 19] + [ ecalVeto ] 0 : Hit 1: [-124.277, 98.4754, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 18] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 3: [26.4873, 4.17066, 16] + [ ecalVeto ] 0 : Hit 4: [24.0793, 8.34132, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 81.7928, 13] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 77.6221, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 73.4515, 11] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 69.2808, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2916.5; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 275 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5709.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 276 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, 20.8533, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 25] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 24] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 23] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 22] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 21] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 33.3653, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 41.7066, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 17] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 16] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 15] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 14] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 9: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 10: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 11: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 12: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 13: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 75.0719, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 70.9012, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 66.7306, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, 66.7306, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, 62.5599, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, 58.3892, 6] + [ ecalVeto ] 0 : Hit 8: [2.40793, 54.2186, 5] + [ ecalVeto ] 0 : Hit 9: [4.81586, 50.0479, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 91.7545, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 87.5839, 9] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 66.7306, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 62.5599, 7] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4902.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 277 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-123.341, -41.7066, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2871.84; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 278 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5146.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 279 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 119.329, 19] + [ ecalVeto ] 0 : Hit 1: [-138.725, 115.158, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, 110.987, 17] + [ ecalVeto ] 0 : Hit 1: [-124.277, 106.817, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 90.1341, 11] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 85.9634, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, 45.8773, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, 41.7066, 2] + [ ecalVeto ] 0 : Hit 4: [16.8555, 45.8773, 1] + [ ecalVeto ] 0 : Hit 5: [19.2635, 50.0479, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5652.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 280 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 280 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2451.39; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 281 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, -115.158, 20] + [ ecalVeto ] 0 : Hit 1: [102.606, -110.987, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 41.7066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4878.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 282 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 21 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1382.19; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 283 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 227.766, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 223.595, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 45.8773, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, 8.34132, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 70.9012, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7324.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 284 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [59.2627, 77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [61.6707, 73.4515, 20] + [ ecalVeto ] 0 : Hit 2: [59.2627, 69.2808, 19] + [ ecalVeto ] 0 : Hit 3: [61.6707, 65.1101, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [33.711, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [33.711, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [31.3031, 12.512, 3] + [ ecalVeto ] 0 : Hit 4: [33.711, 16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3113.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 285 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 177.718, 27] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 181.889, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 177.718, 25] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 173.547, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5271.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 286 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3858.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 287 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3895.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 288 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4551; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 289 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, -12.512, 22] + [ ecalVeto ] 0 : Hit 1: [52.9745, -8.34132, 21] + [ ecalVeto ] 0 : Hit 2: [55.3824, -12.512, 20] + [ ecalVeto ] 0 : Hit 3: [52.9745, -8.34132, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, 69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-109.829, 73.4515, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [48.1586, -8.34132, 18] + [ ecalVeto ] 0 : Hit 1: [45.7507, -4.17066, 17] + [ ecalVeto ] 0 : Hit 2: [48.1586, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 3: [45.7507, -4.17066, 15] + [ ecalVeto ] 0 : Hit 4: [48.1586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 5: [45.7507, 4.17066, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 65.1101, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 65.1101, 15] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 69.2808, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [40.9348, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, 8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [38.5269, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [40.9348, 12.512, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 65.1101, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 62.5599, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6263.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 290 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.039, -81.7928, 6] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -77.6221, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5244.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 291 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [96.8541, 4.17066, 30] + [ ecalVeto ] 0 : Hit 1: [96.8541, 4.17066, 28] + [ ecalVeto ] 0 : Hit 2: [94.4462, 8.34132, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [81.8697, 8.34132, 27] + [ ecalVeto ] 0 : Hit 1: [84.2776, 12.512, 26] + [ ecalVeto ] 0 : Hit 2: [81.8697, 8.34132, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3071.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 292 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 83.4132, 24] + [ ecalVeto ] 0 : Hit 1: [16.8555, 79.2426, 23] + [ ecalVeto ] 0 : Hit 2: [19.2635, 75.0719, 22] + [ ecalVeto ] 0 : Hit 3: [16.8555, 70.9012, 21] + [ ecalVeto ] 0 : Hit 4: [19.2635, 75.0719, 20] + [ ecalVeto ] 0 : Hit 5: [16.8555, 70.9012, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 54.2186, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1924.54; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 293 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 58.3892, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, 54.2186, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 41.7066, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 102.646, 7] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 98.4754, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4363.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 294 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -70.9012, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -75.0719, 12] + [ ecalVeto ] 0 : Hit 2: [-39.9993, -77.6221, 13] + [ ecalVeto ] 0 : Hit 3: [-37.5914, -81.7928, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -79.2426, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -75.0719, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6481.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 295 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6148.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 296 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6030.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 297 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [112.237, 102.646, 30] + [ ecalVeto ] 0 : Hit 1: [109.829, 98.4754, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [45.7507, 70.9012, 27] + [ ecalVeto ] 0 : Hit 1: [48.1586, 66.7306, 26] + [ ecalVeto ] 0 : Hit 2: [45.7507, 62.5599, 25] + [ ecalVeto ] 0 : Hit 3: [48.1586, 58.3892, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 58.3892, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 21] + [ ecalVeto ] 0 : Hit 2: [33.711, 50.0479, 20] + [ ecalVeto ] 0 : Hit 3: [31.3031, 45.8773, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [61.6707, 65.1101, 20] + [ ecalVeto ] 0 : Hit 1: [60.1983, 62.5599, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2458.83; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 298 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [104.078, -8.34132, 24] + [ ecalVeto ] 0 : Hit 1: [101.67, -4.17066, 23] + [ ecalVeto ] 0 : Hit 2: [104.078, -8.34132, 22] + [ ecalVeto ] 0 : Hit 3: [101.67, -12.512, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [77.0538, -16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [74.6459, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [77.0538, -16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [74.6459, -12.512, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1752.5; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 299 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -12.512, 16] + [ ecalVeto ] 0 : Hit 1: [-33.711, -8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -12.512, 14] + [ ecalVeto ] 0 : Hit 3: [-33.711, -8.34132, 13] + [ ecalVeto ] 0 : Hit 4: [-31.3031, -4.17066, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -16.6826, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 66.7306, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 62.5599, 7] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 58.3892, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 77.6221, 8] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 73.4515, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 58.3892, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 2] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8594.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 300 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 169.377, 15] + [ ecalVeto ] 0 : Hit 1: [-52.039, 165.206, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2701.32; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 301 Brem photon produced 5 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3442.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 302 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, -75.0719, 27] + [ ecalVeto ] 0 : Hit 1: [-145.013, -79.2426, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -66.7306, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, -62.5599, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, -54.2186, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -50.0479, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -41.7066, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1402.33; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 303 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, 66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [55.3824, 62.5599, 18] + [ ecalVeto ] 0 : Hit 2: [52.9745, 58.3892, 17] + [ ecalVeto ] 0 : Hit 3: [55.3824, 54.2186, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [60.1983, 54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [62.6062, 50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [60.1983, 54.2186, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-219.659, 50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-217.251, 54.2186, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [48.1586, 33.3653, 18] + [ ecalVeto ] 0 : Hit 1: [45.7507, 29.1946, 17] + [ ecalVeto ] 0 : Hit 2: [48.1586, 25.024, 16] + [ ecalVeto ] 0 : Hit 3: [45.7507, 29.1946, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3727.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 304 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -37.5359, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6208.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 305 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, -16.6826, 26] + [ ecalVeto ] 0 : Hit 1: [60.1983, -12.512, 25] + [ ecalVeto ] 0 : Hit 2: [62.6062, -16.6826, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, -4.17066, 24] + [ ecalVeto ] 0 : Hit 1: [52.9745, -8.34132, 23] + [ ecalVeto ] 0 : Hit 2: [55.3824, -4.17066, 22] + [ ecalVeto ] 0 : Hit 3: [52.9745, -8.34132, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-137.789, 33.3653, 20] + [ ecalVeto ] 0 : Hit 1: [-140.197, 29.1946, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-130.565, 29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [-132.973, 25.024, 17] + [ ecalVeto ] 0 : Hit 2: [-130.565, 20.8533, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3285.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 306 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, 20.8533, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 25.024, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 25.024, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5193.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 307 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, -50.0479, 29] + [ ecalVeto ] 0 : Hit 1: [-159.46, -45.8773, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-137.789, -41.7066, 26] + [ ecalVeto ] 0 : Hit 1: [-140.197, -37.5359, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [55.3824, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [55.3824, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3064.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 308 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -173.547, 3] + [ ecalVeto ] 0 : Hit 1: [-15.92, -177.718, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -177.718, 1] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -173.547, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3764.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 309 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -2.36672e-14, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3366.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 310 Brem photon produced 82 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 90.1341, 11] + [ ecalVeto ] 0 : Hit 1: [-15.92, 94.3048, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5448.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 311 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [162.804, 148.523, 22] + [ ecalVeto ] 0 : Hit 1: [160.396, 144.353, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [40.9348, -37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [38.5269, -33.3653, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, -37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [33.711, -33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [33.711, -25.024, 8] + [ ecalVeto ] 0 : Hit 5: [26.4873, -20.8533, 10] + [ ecalVeto ] 0 : Hit 6: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Hit 7: [26.4873, -20.8533, 8] + [ ecalVeto ] 0 : Hit 8: [24.0793, -16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [62.6062, 58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [60.1983, 54.2186, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5227.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 312 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, -102.646, 19] + [ ecalVeto ] 0 : Hit 1: [-124.277, -98.4754, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -45.8773, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5149.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 313 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 13 + [ ecalVeto ] 0 : Beginning track merging using 13 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 9: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-123.341, 25.024, 4] + [ ecalVeto ] 0 : Hit 1: [-125.749, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5006.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 314 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [112.237, 94.3048, 28] + [ ecalVeto ] 0 : Hit 1: [109.829, 90.1341, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [105.013, 81.7928, 26] + [ ecalVeto ] 0 : Hit 1: [102.606, 77.6221, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, 16.6826, 15] + [ ecalVeto ] 0 : Hit 2: [40.9348, 12.512, 14] + [ ecalVeto ] 0 : Hit 3: [38.5269, 8.34132, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [33.711, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [31.3031, 20.8533, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4570.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 315 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3674.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 316 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [-48.1586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 4: [-45.7507, -54.2186, 10] + [ ecalVeto ] 0 : Hit 5: [-48.1586, -50.0479, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -45.8773, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4426.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 317 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, 90.1341, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 87.5839, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, 83.4132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 87.5839, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 83.4132, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 79.2426, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2779.32; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 318 Brem photon produced 78 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4739.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 319 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, -45.8773, 22] + [ ecalVeto ] 0 : Hit 1: [52.9745, -50.0479, 21] + [ ecalVeto ] 0 : Hit 2: [55.3824, -45.8773, 20] + [ ecalVeto ] 0 : Hit 3: [52.9745, -50.0479, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, -41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [40.9348, -45.8773, 14] + [ ecalVeto ] 0 : Hit 3: [38.5269, -41.7066, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, -45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, -50.0479, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, -45.8773, 8] + [ ecalVeto ] 0 : Hit 4: [24.0793, -41.7066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3178.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 320 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, 4.17066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, -4.17066, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, -4.17066, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4214.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 321 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3456.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 322 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -85.9634, 10] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -81.7928, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5417.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 323 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 123.499, 23] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 119.329, 22] + [ ecalVeto ] 0 : Hit 2: [-47.2231, 115.158, 21] + [ ecalVeto ] 0 : Hit 3: [-44.8152, 110.987, 20] + [ ecalVeto ] 0 : Hit 4: [-47.2231, 106.817, 19] + [ ecalVeto ] 0 : Hit 5: [-44.8152, 102.646, 18] + [ ecalVeto ] 0 : Hit 6: [-47.2231, 98.4754, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 90.1341, 16] + [ ecalVeto ] 0 : Hit 2: [-39.9993, 85.9634, 15] + [ ecalVeto ] 0 : Hit 3: [-37.5914, 81.7928, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3561.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 324 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10852.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 325 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2529.95; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 326 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -119.329, 27] + [ ecalVeto ] 0 : Hit 1: [-52.039, -123.499, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -98.4754, 22] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -94.3048, 21] + [ ecalVeto ] 0 : Hit 2: [-37.5914, -90.1341, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -70.9012, 15] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -66.7306, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -45.8773, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [38.5269, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [40.9348, 45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [38.5269, 41.7066, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [45.7507, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [45.7507, 29.1946, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4161.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 327 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 1] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3699.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 328 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -54.2186, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, -50.0479, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5781.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 329 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [94.4462, -8.34132, 33] + [ ecalVeto ] 0 : Hit 1: [94.4462, -8.34132, 31] + [ ecalVeto ] 0 : Hit 2: [94.4462, -8.34132, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [89.6303, -8.34132, 32] + [ ecalVeto ] 0 : Hit 1: [89.6303, -8.34132, 30] + [ ecalVeto ] 0 : Hit 2: [89.6303, -8.34132, 28] + [ ecalVeto ] 0 : Hit 3: [89.0935, -12.512, 27] + [ ecalVeto ] 0 : Hit 4: [89.6303, -16.6826, 26] + [ ecalVeto ] 0 : Hit 5: [89.0935, -20.8533, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 22] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 21] + [ ecalVeto ] 0 : Hit 3: [19.2635, 33.3653, 20] + [ ecalVeto ] 0 : Hit 4: [16.8555, 37.5359, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 8: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 9: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 10: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3043.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 330 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [15.92, 94.3048, 9] + [ ecalVeto ] 0 : Hit 1: [18.3279, 98.4754, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7086.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 331 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1757.45; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 332 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-33.711, -25.024, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [45.7507, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [48.1586, -8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5382.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 333 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [130.565, -29.1946, 33] + [ ecalVeto ] 0 : Hit 1: [132.973, -25.024, 32] + [ ecalVeto ] 0 : Hit 2: [130.565, -20.8533, 31] + [ ecalVeto ] 0 : Hit 3: [132.973, -16.6826, 30] + [ ecalVeto ] 0 : Hit 4: [132.973, -16.6826, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-145.013, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-145.013, 20.8533, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 919.836; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 334 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 29 + [ ecalVeto ] 0 : Beginning track merging using 29 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 28 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -20.8533, 31] + [ ecalVeto ] 0 : Hit 1: [-123.341, -25.024, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 29] + [ ecalVeto ] 0 : Hit 1: [-116.118, -29.1946, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, -29.1946, 27] + [ ecalVeto ] 0 : Hit 1: [-108.894, -33.3653, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-104.078, -33.3653, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, -29.1946, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -37.5359, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -33.3653, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 21] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 20] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 18] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 18] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 16] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 16] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 14] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 12] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 10] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [105.013, -115.158, 8] + [ ecalVeto ] 0 : Hit 1: [102.606, -110.987, 7] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 6] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 6] + [ ecalVeto ] 0 : Track 21: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -58.3892, 6] + [ ecalVeto ] 0 : Track 22: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 4] + [ ecalVeto ] 0 : Track 23: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -37.5359, 2] + [ ecalVeto ] 0 : Track 24: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -8.34132, 3] + [ ecalVeto ] 0 : Track 25: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -16.6826, 1] + [ ecalVeto ] 0 : Track 26: + [ ecalVeto ] 0 : Hit 0: [16.8555, -70.9012, 3] + [ ecalVeto ] 0 : Hit 1: [19.2635, -66.7306, 2] + [ ecalVeto ] 0 : Track 27: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -90.1341, 3] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -94.3048, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 28 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5475.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 335 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 95.9252, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 91.7545, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 87.5839, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 83.4132, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4813.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 336 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 15] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 14] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 13] + [ ecalVeto ] 0 : Hit 6: [12.0397, -29.1946, 12] + [ ecalVeto ] 0 : Hit 7: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Hit 8: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 9: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 10: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 11: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 12: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 13: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 14: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9808.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 337 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5502.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 338 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6572.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 339 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6532.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 340 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4700.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 341 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5757.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 342 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [55.3824, -29.1946, 16] + [ ecalVeto ] 0 : Hit 2: [52.9745, -25.024, 15] + [ ecalVeto ] 0 : Hit 3: [55.3824, -20.8533, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 2] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -33.3653, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4936.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 343 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, -60.9395, 26] + [ ecalVeto ] 0 : Hit 1: [95.3817, -56.7688, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1647.68; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 344 Brem photon produced 64 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5396.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 345 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9819.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 346 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 32] + [ ecalVeto ] 0 : Hit 1: [26.4873, 29.1946, 30] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 29] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 27] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 28] + [ ecalVeto ] 0 : Hit 5: [19.2635, 33.3653, 26] + [ ecalVeto ] 0 : Hit 6: [16.8555, 29.1946, 25] + [ ecalVeto ] 0 : Hit 7: [19.2635, 25.024, 24] + [ ecalVeto ] 0 : Hit 8: [16.8555, 20.8533, 23] + [ ecalVeto ] 0 : Hit 9: [19.2635, 25.024, 22] + [ ecalVeto ] 0 : Hit 10: [16.8555, 20.8533, 21] + [ ecalVeto ] 0 : Hit 11: [19.2635, 16.6826, 20] + [ ecalVeto ] 0 : Hit 12: [16.8555, 12.512, 19] + [ ecalVeto ] 0 : Hit 13: [16.8555, 12.512, 17] + [ ecalVeto ] 0 : Hit 14: [19.2635, 8.34132, 16] + [ ecalVeto ] 0 : Hit 15: [16.8555, 4.17066, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2692.52; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 347 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 66.7306, 32] + [ ecalVeto ] 0 : Hit 1: [16.8555, 62.5599, 31] + [ ecalVeto ] 0 : Hit 2: [19.2635, 66.7306, 30] + [ ecalVeto ] 0 : Hit 3: [16.8555, 62.5599, 29] + [ ecalVeto ] 0 : Hit 4: [19.2635, 58.3892, 28] + [ ecalVeto ] 0 : Hit 5: [16.8555, 54.2186, 27] + [ ecalVeto ] 0 : Hit 6: [16.8555, 54.2186, 25] + [ ecalVeto ] 0 : Hit 7: [16.8555, 54.2186, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 26] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 22] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 20] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 18] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 17] + [ ecalVeto ] 0 : Hit 4: [12.0397, 45.8773, 16] + [ ecalVeto ] 0 : Hit 5: [9.63173, 41.7066, 15] + [ ecalVeto ] 0 : Hit 6: [12.0397, 37.5359, 14] + [ ecalVeto ] 0 : Hit 7: [9.63173, 41.7066, 13] + [ ecalVeto ] 0 : Hit 8: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 9: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 10: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 11: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 12: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 13: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 14: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1255.22; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 348 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-62.6062, -33.3653, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6909.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 349 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4913; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 350 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2176.36; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 351 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3034.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 352 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 66.7306, 15] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 70.9012, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 62.5599, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 62.5599, 9] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 58.3892, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -41.7066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6526.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 353 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7112.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 354 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 6: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4331.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 355 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5050.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 356 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -70.9012, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -102.646, 9] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -106.817, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6035.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 357 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6135.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 358 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [234.106, 16.6826, 30] + [ ecalVeto ] 0 : Hit 1: [231.698, 12.512, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [219.659, 16.6826, 28] + [ ecalVeto ] 0 : Hit 1: [217.251, 12.512, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [205.211, 16.6826, 26] + [ ecalVeto ] 0 : Hit 1: [202.803, 12.512, 25] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-126.685, -127.67, 17] + [ ecalVeto ] 0 : Hit 1: [-126.685, -127.67, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 0] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 9: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -58.3892, 4] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -54.2186, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6679.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 359 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3985.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 360 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.039, -81.7928, 29] + [ ecalVeto ] 0 : Hit 1: [54.4469, -77.6221, 28] + [ ecalVeto ] 0 : Hit 2: [52.039, -81.7928, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [47.2231, -73.4515, 26] + [ ecalVeto ] 0 : Hit 1: [47.2231, -73.4515, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, -75.0719, 23] + [ ecalVeto ] 0 : Hit 1: [40.9348, -70.9012, 22] + [ ecalVeto ] 0 : Hit 2: [38.5269, -66.7306, 21] + [ ecalVeto ] 0 : Hit 3: [40.9348, -62.5599, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -45.8773, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2987.62; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 361 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 70.9012, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 66.7306, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 62.5599, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 87.5839, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 83.4132, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4147.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 362 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 18] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 17] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 16] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -127.67, 15] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -123.499, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5751.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 363 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [169.092, -37.5359, 30] + [ ecalVeto ] 0 : Hit 1: [166.684, -33.3653, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [154.644, -37.5359, 28] + [ ecalVeto ] 0 : Hit 1: [152.237, -33.3653, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [-33.711, -16.6826, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3148.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 364 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 41.7066, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [26.4873, 62.5599, 16] + [ ecalVeto ] 0 : Hit 2: [24.0793, 58.3892, 15] + [ ecalVeto ] 0 : Hit 3: [26.4873, 54.2186, 14] + [ ecalVeto ] 0 : Hit 4: [24.0793, 58.3892, 13] + [ ecalVeto ] 0 : Hit 5: [26.4873, 62.5599, 12] + [ ecalVeto ] 0 : Hit 6: [26.4873, 62.5599, 10] + [ ecalVeto ] 0 : Hit 7: [24.0793, 58.3892, 9] + [ ecalVeto ] 0 : Hit 8: [31.3031, 54.2186, 11] + [ ecalVeto ] 0 : Hit 9: [33.711, 58.3892, 10] + [ ecalVeto ] 0 : Hit 10: [31.3031, 54.2186, 9] + [ ecalVeto ] 0 : Hit 11: [33.711, 50.0479, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 62.5599, 10] + [ ecalVeto ] 0 : Hit 3: [12.0397, 62.5599, 8] + [ ecalVeto ] 0 : Hit 4: [12.0397, 54.2186, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 50.0479, 9] + [ ecalVeto ] 0 : Hit 6: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 8: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 9: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 62.5599, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 54.2186, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, 50.0479, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, 54.2186, 7] + [ ecalVeto ] 0 : Hit 6: [19.2635, 58.3892, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 66.7306, 3] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 70.9012, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7115.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 365 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -54.2186, 16] + [ ecalVeto ] 0 : Hit 1: [-33.711, -50.0479, 15] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -45.8773, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [67.4221, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [69.83, -4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [67.4221, -2.66454e-15, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5040.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 366 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 23] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 21] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 20] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 18] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 17] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 16] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 15] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 12.512, 14] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 20.8533, 12] + [ ecalVeto ] 0 : Hit 11: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 12: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 13: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 14: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 15: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 16: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5717.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 367 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 69.2808, 23] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 65.1101, 22] + [ ecalVeto ] 0 : Hit 2: [-97.7897, 60.9395, 21] + [ ecalVeto ] 0 : Hit 3: [-95.3817, 56.7688, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 56.7688, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 54.2186, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 54.2186, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 12] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 41.7066, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 37.5359, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 70.9012, 4] + [ ecalVeto ] 0 : Hit 1: [-33.711, 66.7306, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6833.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 368 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, 148.523, 20] + [ ecalVeto ] 0 : Hit 1: [18.3279, 148.523, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5848.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 369 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, -69.2808, 12] + [ ecalVeto ] 0 : Hit 1: [66.4865, -65.1101, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5880.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 370 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -54.2186, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5749.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 371 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5720.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 372 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 11] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -8.34132, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5984.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 373 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [112.237, -77.6221, 32] + [ ecalVeto ] 0 : Hit 1: [109.829, -73.4515, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, 58.3892, 24] + [ ecalVeto ] 0 : Hit 1: [45.7507, 54.2186, 23] + [ ecalVeto ] 0 : Hit 2: [48.1586, 50.0479, 22] + [ ecalVeto ] 0 : Hit 3: [45.7507, 45.8773, 21] + [ ecalVeto ] 0 : Hit 4: [48.1586, 50.0479, 20] + [ ecalVeto ] 0 : Hit 5: [45.7507, 45.8773, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [52.9745, 58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [52.9745, 58.3892, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [33.711, 41.7066, 14] + [ ecalVeto ] 0 : Hit 2: [31.3031, 37.5359, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-161.868, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-159.46, 29.1946, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2664.43; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 374 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6900.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 375 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, 12.512, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 8.34132, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -2.36672e-14, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 4.17066, 18] + [ ecalVeto ] 0 : Hit 2: [-89.6303, 8.34132, 17] + [ ecalVeto ] 0 : Hit 3: [-81.8697, 8.34132, 18] + [ ecalVeto ] 0 : Hit 4: [-82.4065, 4.17066, 17] + [ ecalVeto ] 0 : Hit 5: [-81.8697, 8.34132, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [60.1983, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [62.6062, 50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [60.1983, 45.8773, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4016.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 376 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 102.646, 26] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 98.4754, 25] + [ ecalVeto ] 0 : Hit 2: [-44.8152, 94.3048, 24] + [ ecalVeto ] 0 : Hit 3: [-47.2231, 90.1341, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-54.4469, 77.6221, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 58.3892, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 37.5359, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5070.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 377 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-131.501, -152.694, 20] + [ ecalVeto ] 0 : Hit 1: [-133.909, -156.865, 19] + [ ecalVeto ] 0 : Hit 2: [-131.501, -152.694, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4980.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 378 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 24] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 23] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 20] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 19] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [31.3031, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [33.711, 16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [33.711, 16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [33.711, 16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [31.3031, 12.512, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [33.711, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [31.3031, -20.8533, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, 8.34132, 2] + [ ecalVeto ] 0 : Hit 4: [16.8555, 12.512, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 0] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 2] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5532.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 379 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4537.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 380 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [76.1183, -98.4754, 2] + [ ecalVeto ] 0 : Hit 1: [73.7103, -94.3048, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5442.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 381 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6493.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 382 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6484.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 383 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, 102.646, 28] + [ ecalVeto ] 0 : Hit 1: [37.5914, 106.817, 27] + [ ecalVeto ] 0 : Hit 2: [37.5914, 106.817, 25] + [ ecalVeto ] 0 : Hit 3: [39.9993, 110.987, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [54.4469, 102.646, 22] + [ ecalVeto ] 0 : Hit 1: [52.039, 106.817, 21] + [ ecalVeto ] 0 : Hit 2: [54.4469, 110.987, 20] + [ ecalVeto ] 0 : Hit 3: [52.039, 115.158, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -54.2186, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -70.9012, 6] + [ ecalVeto ] 0 : Hit 2: [-47.2231, -73.4515, 5] + [ ecalVeto ] 0 : Hit 3: [-44.8152, -77.6221, 4] + [ ecalVeto ] 0 : Hit 4: [-47.2231, -81.7928, 3] + [ ecalVeto ] 0 : Hit 5: [-44.8152, -77.6221, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3113.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 384 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -66.7306, 22] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -62.5599, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -45.8773, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -4.17066, 13] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -8.34132, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 83.4132, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 79.2426, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, 75.0719, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, 70.9012, 11] + [ ecalVeto ] 0 : Hit 4: [19.2635, 66.7306, 10] + [ ecalVeto ] 0 : Hit 5: [19.2635, 66.7306, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, 66.7306, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 62.5599, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 58.3892, 7] + [ ecalVeto ] 0 : Hit 4: [9.63173, 58.3892, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 54.2186, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, 50.0479, 3] + [ ecalVeto ] 0 : Hit 7: [12.0397, 45.8773, 2] + [ ecalVeto ] 0 : Hit 8: [4.81586, 50.0479, 4] + [ ecalVeto ] 0 : Hit 9: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6189.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 385 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -98.4754, 11] + [ ecalVeto ] 0 : Hit 1: [-117.053, -94.3048, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, 41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4740.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 386 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-101.67, -37.5359, 24] + [ ecalVeto ] 0 : Hit 1: [-104.078, -41.7066, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -20.8533, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -37.5359, 20] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -41.7066, 19] + [ ecalVeto ] 0 : Hit 2: [-74.6459, -37.5359, 18] + [ ecalVeto ] 0 : Hit 3: [-77.0538, -33.3653, 17] + [ ecalVeto ] 0 : Hit 4: [-69.83, -37.5359, 19] + [ ecalVeto ] 0 : Hit 5: [-67.4221, -41.7066, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-81.8697, -33.3653, 20] + [ ecalVeto ] 0 : Hit 1: [-82.4065, -37.5359, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3449.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 387 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, -16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [-145.013, -12.512, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, -2.36672e-14, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, 4.17066, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-123.341, 41.7066, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [32.7755, -81.7928, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, -79.2426, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, -75.0719, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, -70.9012, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -41.7066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3788.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 388 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 110.987, 23] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 106.817, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 102.646, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 98.4754, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 81.7928, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3113.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 389 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 25.024, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7498.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 390 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2235.32; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 391 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-101.67, 4.17066, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5724.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 392 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, -45.8773, 17] + [ ecalVeto ] 0 : Hit 4: [19.2635, -41.7066, 16] + [ ecalVeto ] 0 : Hit 5: [16.8555, -37.5359, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 8: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3941.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 393 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, 140.182, 28] + [ ecalVeto ] 0 : Hit 1: [102.606, 136.011, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6266.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 394 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 33.3653, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4870.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 395 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -50.0479, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, -45.8773, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2259.96; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 396 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 15 + [ ecalVeto ] 0 : Beginning track merging using 15 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-212.435, -54.2186, 31] + [ ecalVeto ] 0 : Hit 1: [-210.027, -50.0479, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-188.356, -62.5599, 30] + [ ecalVeto ] 0 : Hit 1: [-190.763, -58.3892, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-154.644, -45.8773, 27] + [ ecalVeto ] 0 : Hit 1: [-152.237, -41.7066, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-132.973, -33.3653, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, -29.1946, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 21] + [ ecalVeto ] 0 : Hit 2: [26.4873, -29.1946, 20] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 19] + [ ecalVeto ] 0 : Hit 4: [26.4873, -29.1946, 18] + [ ecalVeto ] 0 : Hit 5: [24.0793, -25.024, 17] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-104.078, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, -20.8533, 20] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -12.512, 18] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 16] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 13] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 14] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4015.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 397 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2783.41; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 398 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 62.5599, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, 58.3892, 17] + [ ecalVeto ] 0 : Hit 4: [24.0793, 58.3892, 15] + [ ecalVeto ] 0 : Hit 5: [26.4873, 54.2186, 14] + [ ecalVeto ] 0 : Hit 6: [24.0793, 50.0479, 13] + [ ecalVeto ] 0 : Hit 7: [24.0793, 50.0479, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 66.7306, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8777.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 399 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 173.547, 27] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 169.377, 26] + [ ecalVeto ] 0 : Finding linreg tracks from 112 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2556.19; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 400 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -165.206, 19] + [ ecalVeto ] 0 : Hit 1: [-117.053, -161.035, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, -148.523, 17] + [ ecalVeto ] 0 : Hit 1: [-102.606, -144.353, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 10: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Hit 11: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5001.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 401 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6637.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 402 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6942.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 403 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, -62.5599, 25] + [ ecalVeto ] 0 : Hit 1: [-166.684, -58.3892, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, -54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [-152.237, -58.3892, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, -54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-137.789, -50.0479, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-125.749, -54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, -50.0479, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [73.7103, 69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [73.7103, 69.2808, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -37.5359, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4447.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 404 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4333.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 405 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 70.9012, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, 66.7306, 18] + [ ecalVeto ] 0 : Hit 2: [2.40793, 62.5599, 17] + [ ecalVeto ] 0 : Hit 3: [4.81586, 58.3892, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3861.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 406 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 70.9012, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3609.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 407 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6344.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 408 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, -16.6826, 29] + [ ecalVeto ] 0 : Hit 1: [-130.565, -20.8533, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -20.8533, 25] + [ ecalVeto ] 0 : Hit 1: [-108.894, -25.024, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -25.024, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -25.024, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4312.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 409 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7120.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 410 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [126.685, -94.3048, 26] + [ ecalVeto ] 0 : Hit 1: [124.277, -90.1341, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3401.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 411 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 73.4515, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 70.9012, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4960.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 412 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [80.9341, -148.523, 33] + [ ecalVeto ] 0 : Hit 1: [83.3421, -144.353, 32] + [ ecalVeto ] 0 : Hit 2: [80.9341, -140.182, 31] + [ ecalVeto ] 0 : Hit 3: [83.3421, -136.011, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [95.3817, -123.499, 27] + [ ecalVeto ] 0 : Hit 1: [97.7897, -119.329, 26] + [ ecalVeto ] 0 : Hit 2: [95.3817, -115.158, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [76.1183, -106.817, 22] + [ ecalVeto ] 0 : Hit 1: [73.7103, -102.646, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [68.8945, -94.3048, 20] + [ ecalVeto ] 0 : Hit 1: [66.4865, -90.1341, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [54.4469, -69.2808, 16] + [ ecalVeto ] 0 : Hit 1: [52.9745, -66.7306, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4730.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 413 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4926.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 414 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4625.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 415 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [162.804, 115.158, 6] + [ ecalVeto ] 0 : Hit 1: [160.396, 110.987, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 20.8533, 1] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7427.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 416 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6009.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 417 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 25] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 23] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 22] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 21] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 20] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 19] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 18] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 17] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2557.95; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 418 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [226.882, -29.1946, 28] + [ ecalVeto ] 0 : Hit 1: [224.475, -25.024, 27] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4993.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 419 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, -110.987, 22] + [ ecalVeto ] 0 : Hit 1: [8.69618, -106.817, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -87.5839, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -83.4132, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -20.8533, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Hit 9: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-19.2635, 25.024, 5] + [ ecalVeto ] 0 : Hit 6: [-16.8555, 29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [-19.2635, 25.024, 3] + [ ecalVeto ] 0 : Hit 8: [-16.8555, 29.1946, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 41.7066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5387.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 420 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, -181.889, 21] + [ ecalVeto ] 0 : Hit 1: [-131.501, -177.718, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 17] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 15] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 14] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3280.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 421 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8165.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 422 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4497.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 423 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -77.6221, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -75.0719, 8] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -70.9012, 7] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -66.7306, 6] + [ ecalVeto ] 0 : Hit 4: [-33.711, -66.7306, 7] + [ ecalVeto ] 0 : Hit 5: [-31.3031, -70.9012, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -90.1341, 8] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -85.9634, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 6] + [ ecalVeto ] 0 : Hit 2: [-33.711, -50.0479, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4314.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 424 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [31.3031, -4.17066, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [62.6062, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [60.1983, 29.1946, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6244.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 425 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-246.146, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-248.554, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [-246.146, 37.5359, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-241.33, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-238.922, 33.3653, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-234.106, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-231.698, 37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4264.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 426 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5800.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 427 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-102.606, 60.9395, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7674.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 428 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4733.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 429 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, 194.401, 31] + [ ecalVeto ] 0 : Hit 1: [32.7755, 190.23, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [37.5914, 181.889, 29] + [ ecalVeto ] 0 : Hit 1: [39.9993, 177.718, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [37.5914, 165.206, 27] + [ ecalVeto ] 0 : Hit 1: [39.9993, 161.035, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [45.7507, 54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [48.1586, 50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [45.7507, 45.8773, 17] + [ ecalVeto ] 0 : Hit 3: [48.1586, 41.7066, 16] + [ ecalVeto ] 0 : Hit 4: [45.7507, 45.8773, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [25.5517, 110.987, 18] + [ ecalVeto ] 0 : Hit 1: [23.1438, 106.817, 17] + [ ecalVeto ] 0 : Hit 2: [25.5517, 102.646, 16] + [ ecalVeto ] 0 : Hit 3: [23.1438, 98.4754, 15] + [ ecalVeto ] 0 : Hit 4: [25.5517, 94.3048, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [24.0793, 8.34132, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [16.8555, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 50.0479, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, 45.8773, 5] + [ ecalVeto ] 0 : Hit 5: [19.2635, 41.7066, 4] + [ ecalVeto ] 0 : Hit 6: [16.8555, 37.5359, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4998.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 430 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 136.011, 27] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 131.841, 26] + [ ecalVeto ] 0 : Hit 2: [-25.5517, 127.67, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 119.329, 23] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 123.499, 22] + [ ecalVeto ] 0 : Hit 2: [-25.5517, 119.329, 21] + [ ecalVeto ] 0 : Hit 3: [-23.1438, 115.158, 20] + [ ecalVeto ] 0 : Hit 4: [-25.5517, 110.987, 19] + [ ecalVeto ] 0 : Hit 5: [-23.1438, 115.158, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2101.1; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 431 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4102.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 432 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2892.12; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 433 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4755.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 434 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5620.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 435 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [31.3031, -4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [33.711, -8.34132, 10] + [ ecalVeto ] 0 : Hit 4: [31.3031, -12.512, 9] + [ ecalVeto ] 0 : Hit 5: [31.3031, -12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 7: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 8: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 9: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4491.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 436 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-226.882, 20.8533, 33] + [ ecalVeto ] 0 : Hit 1: [-224.475, 25.024, 32] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4830.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 437 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6087.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 438 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5724.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 439 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -54.2186, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -50.0479, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -75.0719, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -79.2426, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 129 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6345.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 440 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4488.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 441 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [69.83, 12.512, 26] + [ ecalVeto ] 0 : Hit 1: [69.83, 12.512, 24] + [ ecalVeto ] 0 : Hit 2: [67.4221, 8.34132, 23] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3525.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 442 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 18 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2509.07; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 443 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, -66.7306, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, -62.5599, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, -58.3892, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, -54.2186, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, -50.0479, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, -45.8773, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 41.7066, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6736.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 444 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, -50.0479, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, -45.8773, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, -41.7066, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6857.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 445 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, -136.011, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, -131.841, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, -127.67, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, -123.499, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3259.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 446 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5327.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 447 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5060.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 448 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [152.237, 8.34132, 31] + [ ecalVeto ] 0 : Hit 1: [154.644, 4.17066, 30] + [ ecalVeto ] 0 : Hit 2: [152.237, 8.34132, 29] + [ ecalVeto ] 0 : Hit 3: [154.644, 12.512, 28] + [ ecalVeto ] 0 : Hit 4: [152.237, 16.6826, 27] + [ ecalVeto ] 0 : Hit 5: [154.644, 20.8533, 26] + [ ecalVeto ] 0 : Hit 6: [152.237, 16.6826, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-190.763, 75.0719, 27] + [ ecalVeto ] 0 : Hit 1: [-188.356, 70.9012, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2172.34; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 449 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, 60.9395, 28] + [ ecalVeto ] 0 : Hit 1: [95.3817, 56.7688, 27] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6171.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 450 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2733.38; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 451 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 6 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1876.22; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 452 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, -58.3892, 33] + [ ecalVeto ] 0 : Hit 1: [67.4221, -58.3892, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, -54.2186, 28] + [ ecalVeto ] 0 : Hit 1: [52.9745, -50.0479, 27] + [ ecalVeto ] 0 : Hit 2: [55.3824, -54.2186, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, -75.0719, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, -70.9012, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, -37.5359, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, -41.7066, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, -37.5359, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3743.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 453 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [26.4873, -4.17066, 8] + [ ecalVeto ] 0 : Hit 5: [26.4873, -4.17066, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6080.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 454 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, 50.0479, 27] + [ ecalVeto ] 0 : Hit 1: [-145.013, 54.2186, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, 45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-137.789, 50.0479, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, 45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, 50.0479, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 22] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 21] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 20] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 19] + [ ecalVeto ] 0 : Hit 4: [16.8555, -12.512, 17] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 18] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 16] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 15] + [ ecalVeto ] 0 : Hit 8: [12.0397, -12.512, 14] + [ ecalVeto ] 0 : Hit 9: [9.63173, -8.34132, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-118.525, 50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, 45.8773, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-104.078, 41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, 37.5359, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 8: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3104.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 455 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, 12.512, 16] + [ ecalVeto ] 0 : Hit 1: [52.9745, 16.6826, 15] + [ ecalVeto ] 0 : Hit 2: [55.3824, 20.8533, 14] + [ ecalVeto ] 0 : Hit 3: [52.9745, 16.6826, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [67.4221, 25.024, 15] + [ ecalVeto ] 0 : Hit 2: [67.4221, 25.024, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [45.7507, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [48.1586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 2: [45.7507, 4.17066, 13] + [ ecalVeto ] 0 : Hit 3: [48.1586, 8.34132, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [33.711, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [31.3031, 12.512, 11] + [ ecalVeto ] 0 : Hit 3: [33.711, 16.6826, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [3.88031, 106.817, 10] + [ ecalVeto ] 0 : Hit 1: [3.88031, 106.817, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 70.9012, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 66.7306, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 70.9012, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 134 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7982.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 456 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 62.5599, 13] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 58.3892, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4601.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 457 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [33.711, 58.3892, 22] + [ ecalVeto ] 0 : Hit 2: [31.3031, 54.2186, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1652.84; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 458 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5610.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 459 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 127.67, 19] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 123.499, 18] + [ ecalVeto ] 0 : Hit 2: [-25.5517, 119.329, 17] + [ ecalVeto ] 0 : Hit 3: [-23.1438, 115.158, 16] + [ ecalVeto ] 0 : Hit 4: [-25.5517, 110.987, 15] + [ ecalVeto ] 0 : Hit 5: [-23.1438, 106.817, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [59.2627, 227.766, 1] + [ ecalVeto ] 0 : Hit 1: [61.6707, 231.937, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5007.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 460 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, 91.7545, 33] + [ ecalVeto ] 0 : Hit 1: [-173.908, 95.9252, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 25] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -54.2186, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -50.0479, 4] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -45.8773, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-69.83, -29.1946, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -41.7066, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [9.63173, -58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -58.3892, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4979.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 461 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5454.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 462 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 462 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3175.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 463 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 25] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -2.36672e-14, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -2.36672e-14, 21] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 4.17066, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -2.66454e-15, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -8.34132, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -12.512, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5876.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 464 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [-55.3824, 12.512, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4905.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 465 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5534.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 466 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 25] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 24] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 23] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 22] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 21] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 20] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 19] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 18] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 25.024, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [26.4873, -29.1946, 18] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 17] + [ ecalVeto ] 0 : Hit 3: [26.4873, -29.1946, 16] + [ ecalVeto ] 0 : Hit 4: [24.0793, -25.024, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 12] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Hit 4: [19.2635, -16.6826, 10] + [ ecalVeto ] 0 : Hit 5: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3280.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 467 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-181.132, 33.3653, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-183.54, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-181.132, 16.6826, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3387.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 468 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 17 + [ ecalVeto ] 0 : Beginning track merging using 17 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -102.646, 14] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -98.4754, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [40.9348, -4.17066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -79.2426, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -83.4132, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -87.5839, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -91.7545, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [8.69618, -98.4754, 9] + [ ecalVeto ] 0 : Hit 1: [11.1041, -94.3048, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -45.8773, 6] + [ ecalVeto ] 0 : Hit 5: [-19.2635, -50.0479, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -75.0719, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -70.9012, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [9.63173, -58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -62.5599, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -81.7928, 5] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -85.9634, 4] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3348.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 469 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2816.77; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 470 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 470 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5653.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 471 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 12.512, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, 16.6826, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, 12.512, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, 16.6826, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2373.08; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 472 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 13] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4670.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 473 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 20 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1856.81; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 474 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [104.078, 25.024, 4] + [ ecalVeto ] 0 : Hit 1: [101.67, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5131.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 475 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3482.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 476 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 23 + [ ecalVeto ] 0 : Beginning track merging using 23 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 23 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -50.0479, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 22] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -45.8773, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -45.8773, 20] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -41.7066, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 18] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 17] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [118.525, -58.3892, 18] + [ ecalVeto ] 0 : Hit 1: [116.118, -62.5599, 17] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 11] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 10] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 8] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 8] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 4] + [ ecalVeto ] 0 : Track 21: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Track 22: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 23 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8826.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 477 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5884.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 478 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, 37.5359, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 41.7066, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 41.7066, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 77.6221, 18] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 73.4515, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [62.6062, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [60.1983, -54.2186, 5] + [ ecalVeto ] 0 : Hit 2: [62.6062, -50.0479, 4] + [ ecalVeto ] 0 : Hit 3: [60.1983, -54.2186, 3] + [ ecalVeto ] 0 : Hit 4: [62.6062, -50.0479, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5039.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 479 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-173.908, -54.2186, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-137.789, -41.7066, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, -37.5359, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3588.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 480 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5005.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 481 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 94.3048, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 85.9634, 14] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 81.7928, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 70.9012, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 66.7306, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 62.5599, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8478.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 482 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 169.377, 33] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 165.206, 32] + [ ecalVeto ] 0 : Hit 2: [-68.8945, 161.035, 31] + [ ecalVeto ] 0 : Hit 3: [-66.4865, 156.865, 30] + [ ecalVeto ] 0 : Hit 4: [-68.8945, 152.694, 29] + [ ecalVeto ] 0 : Hit 5: [-66.4865, 148.523, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 206.913, 29] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 211.083, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [52.9745, -66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [55.3824, -62.5599, 14] + [ ecalVeto ] 0 : Hit 2: [52.9745, -58.3892, 13] + [ ecalVeto ] 0 : Hit 3: [55.3824, -54.2186, 12] + [ ecalVeto ] 0 : Hit 4: [52.9745, -58.3892, 11] + [ ecalVeto ] 0 : Hit 5: [55.3824, -62.5599, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 29.1946, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4472.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 483 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 6: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Hit 7: [12.0397, -4.17066, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6124.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 484 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3385.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 485 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [40.9348, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [40.9348, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [40.9348, 4.17066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [26.4873, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 6: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [16.8555, 12.512, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6502.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 486 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, -16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [-145.013, -12.512, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, -12.512, 23] + [ ecalVeto ] 0 : Hit 1: [-152.237, -16.6826, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, -16.6826, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 11] + [ ecalVeto ] 0 : Hit 3: [33.711, -8.34132, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2490.1; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 487 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4594.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 488 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 161.035, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 156.865, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [62.6062, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [60.1983, 37.5359, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5621.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 489 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 70.9012, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5235.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 490 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -152.694, 13] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -156.865, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5660.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 491 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 491 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-1.47238, 119.329, 24] + [ ecalVeto ] 0 : Hit 1: [-3.88031, 115.158, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -215.254, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -211.083, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -194.401, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -190.23, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 87.5839, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, 83.4132, 18] + [ ecalVeto ] 0 : Hit 2: [2.40793, 79.2426, 17] + [ ecalVeto ] 0 : Hit 3: [4.81586, 75.0719, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5980.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 492 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 37.5359, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6124.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 493 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -70.9012, 26] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -66.7306, 25] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -62.5599, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 87.5839, 23] + [ ecalVeto ] 0 : Hit 1: [4.81586, 91.7545, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4500.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 494 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [33.711, -8.34132, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8669.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 495 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, -102.646, 26] + [ ecalVeto ] 0 : Hit 1: [23.1438, -98.4754, 25] + [ ecalVeto ] 0 : Hit 2: [25.5517, -94.3048, 24] + [ ecalVeto ] 0 : Hit 3: [23.1438, -90.1341, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -87.5839, 21] + [ ecalVeto ] 0 : Hit 1: [19.2635, -83.4132, 20] + [ ecalVeto ] 0 : Hit 2: [16.8555, -79.2426, 19] + [ ecalVeto ] 0 : Hit 3: [16.8555, -79.2426, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, -66.7306, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, -70.9012, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, -66.7306, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, -58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-73.7103, 60.9395, 6] + [ ecalVeto ] 0 : Hit 1: [-76.1183, 56.7688, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 90.1341, 6] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 85.9634, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [-69.83, 54.2186, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3562.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 496 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4135.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 497 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5160.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 498 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, -115.158, 21] + [ ecalVeto ] 0 : Hit 1: [-131.501, -110.987, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 14] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3239.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 499 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-108.894, 16.6826, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -75.0719, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -75.0719, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -79.2426, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -75.0719, 6] + [ ecalVeto ] 0 : Hit 2: [4.81586, -75.0719, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -54.2186, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -58.3892, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5326.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 500 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 25.024, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, 20.8533, 11] + [ ecalVeto ] 0 : Hit 4: [33.711, 25.024, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 73.4515, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4105.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 501 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6012.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 502 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-109.829, 65.1101, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4648.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 503 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-1.47238, -102.646, 26] + [ ecalVeto ] 0 : Hit 1: [-3.88031, -98.4754, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 22] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 21] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 20] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 19] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -37.5359, 18] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 17] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -29.1946, 16] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -25.024, 17] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -20.8533, 16] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -16.6826, 15] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -12.512, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3491.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 504 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [108.894, -16.6826, 31] + [ ecalVeto ] 0 : Hit 1: [111.302, -12.512, 30] + [ ecalVeto ] 0 : Hit 2: [111.302, -12.512, 28] + [ ecalVeto ] 0 : Hit 3: [108.894, -8.34132, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-137.789, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [-140.197, -45.8773, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-130.565, -29.1946, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-140.197, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-137.789, -33.3653, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 8: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 9: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -2.66454e-15, 0] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 124 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5956.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 505 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [26.4873, 29.1946, 18] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 17] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 15] + [ ecalVeto ] 0 : Hit 4: [26.4873, 37.5359, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, -4.17066, 18] + [ ecalVeto ] 0 : Hit 1: [52.9745, -8.34132, 17] + [ ecalVeto ] 0 : Hit 2: [55.3824, -12.512, 16] + [ ecalVeto ] 0 : Hit 3: [52.9745, -8.34132, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [45.7507, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [48.1586, -8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [45.7507, -4.17066, 13] + [ ecalVeto ] 0 : Hit 3: [48.1586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5381.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 506 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3744.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 507 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6050.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 508 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 94.3048, 21] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 90.1341, 20] + [ ecalVeto ] 0 : Hit 2: [-25.5517, 85.9634, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-33.711, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 37.5359, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 25.024, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6778.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 509 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, 58.3892, 24] + [ ecalVeto ] 0 : Hit 1: [60.1983, 54.2186, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, 45.8773, 22] + [ ecalVeto ] 0 : Hit 1: [52.9745, 41.7066, 21] + [ ecalVeto ] 0 : Hit 2: [55.3824, 37.5359, 20] + [ ecalVeto ] 0 : Hit 3: [52.9745, 33.3653, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -45.8773, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -41.7066, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, -37.5359, 12] + [ ecalVeto ] 0 : Hit 4: [24.0793, -41.7066, 11] + [ ecalVeto ] 0 : Hit 5: [26.4873, -37.5359, 10] + [ ecalVeto ] 0 : Hit 6: [19.2635, -41.7066, 12] + [ ecalVeto ] 0 : Hit 7: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Hit 8: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 9: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 10: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 11: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [24.0793, -33.3653, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5722.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 510 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [25.5517, -194.401, 8] + [ ecalVeto ] 0 : Hit 1: [25.5517, -194.401, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -37.5359, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [33.711, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7605.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 511 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2423.48; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 512 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, 29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [-152.237, 25.024, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, 16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 12.512, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5327.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 513 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 1] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5553.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 514 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 24] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 23] + [ ecalVeto ] 0 : Hit 2: [26.4873, -12.512, 22] + [ ecalVeto ] 0 : Hit 3: [24.0793, -16.6826, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 10: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 11: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4295.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 515 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-123.341, 25.024, 18] + [ ecalVeto ] 0 : Hit 1: [-125.749, 20.8533, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4261.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 516 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5687.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 517 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 15 + [ ecalVeto ] 0 : Beginning track merging using 15 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-190.763, 8.34132, 33] + [ ecalVeto ] 0 : Hit 1: [-188.356, 12.512, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, 12.512, 27] + [ ecalVeto ] 0 : Hit 1: [-152.237, 16.6826, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, 12.512, 25] + [ ecalVeto ] 0 : Hit 1: [-137.789, 16.6826, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-125.749, 12.512, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, 16.6826, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-111.302, 12.512, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, 16.6826, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -102.646, 20] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -98.4754, 19] + [ ecalVeto ] 0 : Hit 2: [-30.3676, -94.3048, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 16.6826, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -58.3892, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -54.2186, 10] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 12] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 10] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3980.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 518 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7077.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 519 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 24] + [ ecalVeto ] 0 : Hit 1: [31.3031, -37.5359, 23] + [ ecalVeto ] 0 : Hit 2: [33.711, -33.3653, 22] + [ ecalVeto ] 0 : Hit 3: [31.3031, -37.5359, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, -29.1946, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, -16.6826, 12] + [ ecalVeto ] 0 : Hit 5: [16.8555, -12.512, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2098.03; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 520 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-173.908, -20.8533, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-181.132, -33.3653, 20] + [ ecalVeto ] 0 : Hit 1: [-183.54, -29.1946, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-101.67, 12.512, 20] + [ ecalVeto ] 0 : Hit 1: [-101.67, 12.512, 18] + [ ecalVeto ] 0 : Hit 2: [-101.67, 12.512, 16] + [ ecalVeto ] 0 : Hit 3: [-104.078, 8.34132, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-96.8541, 12.512, 17] + [ ecalVeto ] 0 : Hit 2: [-94.4462, 16.6826, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3031.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 521 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4793.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 522 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4126.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 523 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -83.4132, 22] + [ ecalVeto ] 0 : Hit 1: [2.40793, -79.2426, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -66.7306, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [77.0538, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 1: [74.6459, -4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [77.0538, -8.34132, 14] + [ ecalVeto ] 0 : Hit 3: [74.6459, -12.512, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5179.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 524 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -90.1341, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -75.0719, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -54.2186, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -62.5599, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5627.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 525 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 16] + [ ecalVeto ] 0 : Hit 2: [-33.711, -8.34132, 15] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -4.17066, 14] + [ ecalVeto ] 0 : Hit 4: [-33.711, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 5: [-31.3031, 4.17066, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5548.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 526 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6416.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 527 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, 110.987, 27] + [ ecalVeto ] 0 : Hit 1: [30.3676, 110.987, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 87.5839, 22] + [ ecalVeto ] 0 : Hit 1: [12.0397, 87.5839, 20] + [ ecalVeto ] 0 : Hit 2: [9.63173, 83.4132, 19] + [ ecalVeto ] 0 : Hit 3: [12.0397, 79.2426, 18] + [ ecalVeto ] 0 : Hit 4: [9.63173, 75.0719, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3780.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 528 Brem photon produced 75 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5161.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 529 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 529 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 50.0479, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5318.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 530 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6764.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 531 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 45.8773, 23] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 41.7066, 22] + [ ecalVeto ] 0 : Hit 3: [-55.3824, 37.5359, 21] + [ ecalVeto ] 0 : Hit 4: [-52.9745, 33.3653, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 85.9634, 23] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 81.7928, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 73.4515, 21] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 70.9012, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 18] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 25.024, 17] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 29.1946, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [111.302, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [111.302, 45.8773, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [74.6459, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [77.0538, 50.0479, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1989.79; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 532 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5632.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 533 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 91.7545, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 66.7306, 22] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 62.5599, 21] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 58.3892, 20] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 62.5599, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 79.2426, 21] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 75.0719, 20] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 70.9012, 19] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 66.7306, 18] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 62.5599, 20] + [ ecalVeto ] 0 : Hit 5: [-19.2635, 58.3892, 19] + [ ecalVeto ] 0 : Hit 6: [-16.8555, 54.2186, 18] + [ ecalVeto ] 0 : Hit 7: [-19.2635, 50.0479, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 16] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 15] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1678.58; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 534 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 24] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 22] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 21] + [ ecalVeto ] 0 : Hit 3: [19.2635, 41.7066, 20] + [ ecalVeto ] 0 : Hit 4: [16.8555, 37.5359, 19] + [ ecalVeto ] 0 : Hit 5: [16.8555, 37.5359, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 13] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 6: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 7: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 8: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 9: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 10: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 11: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 12: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 13: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 14: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 15: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 16: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2325.43; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 535 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 110.987, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 106.817, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4853.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 536 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3603.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 537 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3061.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 538 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4707.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 539 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3412.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 540 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4623.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 541 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5107.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 542 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5312.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 543 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 50.0479, 28] + [ ecalVeto ] 0 : Hit 1: [45.7507, 45.8773, 27] + [ ecalVeto ] 0 : Hit 2: [48.1586, 50.0479, 26] + [ ecalVeto ] 0 : Hit 3: [45.7507, 45.8773, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, 45.8773, 24] + [ ecalVeto ] 0 : Hit 1: [38.5269, 41.7066, 23] + [ ecalVeto ] 0 : Hit 2: [40.9348, 45.8773, 22] + [ ecalVeto ] 0 : Hit 3: [38.5269, 41.7066, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 41.7066, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, 37.5359, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, 41.7066, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, 37.5359, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, 70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 66.7306, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 62.5599, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 58.3892, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1778.55; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 544 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6029.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 545 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 115.158, 23] + [ ecalVeto ] 0 : Hit 1: [-102.606, 110.987, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2408.19; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 546 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3123.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 547 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [55.3824, 12.512, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [33.711, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [31.3031, 20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [33.711, 16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [31.3031, 20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [33.711, 25.024, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [40.9348, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [38.5269, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [40.9348, 20.8533, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5463.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 548 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, -50.0479, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5535.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 549 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -29.1946, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5567.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 550 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 20] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 29.1946, 19] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 25.024, 18] + [ ecalVeto ] 0 : Hit 4: [-24.0793, 25.024, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3273.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 551 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 25.024, 20] + [ ecalVeto ] 0 : Hit 2: [-82.4065, 20.8533, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-87.2224, 20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [-89.6303, 25.024, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 20.8533, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5190.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 552 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -219.425, 25] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -215.254, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -190.23, 21] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -186.059, 20] + [ ecalVeto ] 0 : Hit 2: [-61.6707, -181.889, 19] + [ ecalVeto ] 0 : Hit 3: [-59.2627, -177.718, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 106.817, 14] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 102.646, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3941.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 553 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-124.277, -98.4754, 22] + [ ecalVeto ] 0 : Hit 1: [-126.685, -94.3048, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7562.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 554 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -131.841, 19] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -136.011, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7593.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 555 Brem photon produced 71 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, 66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-145.013, 62.5599, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7914.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 556 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5878.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 557 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, -58.3892, 27] + [ ecalVeto ] 0 : Hit 1: [69.83, -54.2186, 26] + [ ecalVeto ] 0 : Hit 2: [67.4221, -50.0479, 25] + [ ecalVeto ] 0 : Hit 3: [69.83, -45.8773, 24] + [ ecalVeto ] 0 : Hit 4: [67.4221, -41.7066, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 81.7928, 16] + [ ecalVeto ] 0 : Hit 2: [-39.9993, 77.6221, 15] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 75.0719, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, -16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [40.9348, -12.512, 12] + [ ecalVeto ] 0 : Hit 3: [38.5269, -8.34132, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5273.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 558 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 8.34132, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, 16.6826, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, 12.512, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-176.316, -2.36672e-14, 19] + [ ecalVeto ] 0 : Hit 1: [-173.908, 4.17066, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5413.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 559 Brem photon produced 71 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5881.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 560 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 58.3892, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7059.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 561 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3012.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 562 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [33.711, 25.024, 12] + [ ecalVeto ] 0 : Hit 2: [31.3031, 20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [55.3824, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [52.9745, -50.0479, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 156.865, 7] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 152.694, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 14739.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 563 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 16 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1103.87; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 564 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [94.4462, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [96.8541, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [96.8541, -20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [96.8541, -20.8533, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [101.67, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [101.67, -20.8533, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5299.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 565 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, 140.182, 24] + [ ecalVeto ] 0 : Hit 1: [102.606, 136.011, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5010.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 566 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [19.2635, 50.0479, 20] + [ ecalVeto ] 0 : Hit 2: [16.8555, 45.8773, 19] + [ ecalVeto ] 0 : Hit 3: [19.2635, 41.7066, 18] + [ ecalVeto ] 0 : Hit 4: [16.8555, 37.5359, 17] + [ ecalVeto ] 0 : Hit 5: [16.8555, 37.5359, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3719.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 567 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7755.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 568 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-137.789, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6586.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 569 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -87.5839, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -83.4132, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -79.2426, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -75.0719, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5839.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 570 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3240.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 571 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2271.18; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 572 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [45.7507, 29.1946, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4603.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 573 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 69.2808, 25] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 66.7306, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, 50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [38.5269, 50.0479, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, 54.2186, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, 50.0479, 17] + [ ecalVeto ] 0 : Hit 4: [33.711, 50.0479, 18] + [ ecalVeto ] 0 : Hit 5: [33.711, 50.0479, 16] + [ ecalVeto ] 0 : Hit 6: [31.3031, 45.8773, 15] + [ ecalVeto ] 0 : Hit 7: [33.711, 41.7066, 14] + [ ecalVeto ] 0 : Hit 8: [31.3031, 37.5359, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 33.3653, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4384.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 574 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-190.763, -66.7306, 23] + [ ecalVeto ] 0 : Hit 1: [-188.356, -62.5599, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-154.644, -54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-152.237, -50.0479, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -25.024, 14] + [ ecalVeto ] 0 : Hit 2: [-94.4462, -25.024, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [-82.4065, -20.8533, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [108.894, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [111.302, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [108.894, 33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [111.302, 37.5359, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4690.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 575 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 8: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [38.5269, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [40.9348, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [33.711, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [33.711, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [31.3031, -12.512, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6455.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 576 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, -127.67, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, -123.499, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -110.987, 21] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -106.817, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6006.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 577 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [26.4873, 37.5359, 10] + [ ecalVeto ] 0 : Hit 4: [31.3031, 37.5359, 11] + [ ecalVeto ] 0 : Hit 5: [31.3031, 37.5359, 9] + [ ecalVeto ] 0 : Hit 6: [33.711, 33.3653, 8] + [ ecalVeto ] 0 : Hit 7: [33.711, 33.3653, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 7: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7655.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 578 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -77.6221, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-52.039, -73.4515, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -70.9012, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -136.011, 5] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -140.182, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7881.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 579 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4511.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 580 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 6: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7102.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 581 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 75.0719, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 70.9012, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 66.7306, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 62.5599, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 8: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 10: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5696.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 582 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5340.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 583 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [40.9348, 4.17066, 20] + [ ecalVeto ] 0 : Hit 2: [38.5269, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 3: [40.9348, -4.17066, 18] + [ ecalVeto ] 0 : Hit 4: [38.5269, -8.34132, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 54.2186, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, -4.17066, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 33.3653, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 7: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 116 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6805.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 584 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6091.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 585 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [162.804, -131.841, 20] + [ ecalVeto ] 0 : Hit 1: [160.396, -127.67, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 10: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 11: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4561; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 586 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5321.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 587 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -54.2186, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 66.7306, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5370.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 588 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4100.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 589 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6904.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 590 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, -119.329, 28] + [ ecalVeto ] 0 : Hit 1: [37.5914, -115.158, 27] + [ ecalVeto ] 0 : Hit 2: [39.9993, -110.987, 26] + [ ecalVeto ] 0 : Hit 3: [37.5914, -106.817, 25] + [ ecalVeto ] 0 : Hit 4: [39.9993, -102.646, 24] + [ ecalVeto ] 0 : Hit 5: [37.5914, -98.4754, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 19] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 18] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 17] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 16] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 15] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 20.8533, 14] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 11: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 12: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -75.0719, 17] + [ ecalVeto ] 0 : Hit 1: [26.4873, -79.2426, 16] + [ ecalVeto ] 0 : Hit 2: [24.0793, -75.0719, 15] + [ ecalVeto ] 0 : Hit 3: [26.4873, -70.9012, 14] + [ ecalVeto ] 0 : Hit 4: [24.0793, -66.7306, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -62.5599, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -54.2186, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, -50.0479, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, -45.8773, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2198.59; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 591 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 591 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5027.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 592 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3008.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 593 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -54.2186, 30] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -50.0479, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [77.0538, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [74.6459, 12.512, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5036.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 594 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [-33.711, 50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 45.8773, 10] + [ ecalVeto ] 0 : Hit 4: [-33.711, 41.7066, 9] + [ ecalVeto ] 0 : Hit 5: [-31.3031, 37.5359, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3330.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 595 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [-52.039, -98.4754, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -85.9634, 17] + [ ecalVeto ] 0 : Hit 2: [-37.5914, -81.7928, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [-33.711, -66.7306, 13] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -62.5599, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4269.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 596 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -33.3653, 24] + [ ecalVeto ] 0 : Hit 1: [45.7507, -29.1946, 23] + [ ecalVeto ] 0 : Hit 2: [48.1586, -25.024, 22] + [ ecalVeto ] 0 : Hit 3: [45.7507, -20.8533, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -20.8533, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, -16.6826, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, -12.512, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, -16.6826, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [33.711, -8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [31.3031, -4.17066, 13] + [ ecalVeto ] 0 : Hit 3: [33.711, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 4: [31.3031, 4.17066, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3062.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 597 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4182.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 598 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 598 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -58.3892, 26] + [ ecalVeto ] 0 : Hit 1: [-69.83, -54.2186, 25] + [ ecalVeto ] 0 : Hit 2: [-67.4221, -50.0479, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 4.17066, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5674.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 599 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 599 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4329.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 600 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [69.83, 29.1946, 24] + [ ecalVeto ] 0 : Hit 1: [67.4221, 25.024, 23] + [ ecalVeto ] 0 : Hit 2: [69.83, 20.8533, 22] + [ ecalVeto ] 0 : Hit 3: [67.4221, 25.024, 21] + [ ecalVeto ] 0 : Hit 4: [69.83, 20.8533, 20] + [ ecalVeto ] 0 : Hit 5: [67.4221, 16.6826, 19] + [ ecalVeto ] 0 : Hit 6: [69.83, 20.8533, 18] + [ ecalVeto ] 0 : Hit 7: [67.4221, 16.6826, 17] + [ ecalVeto ] 0 : Hit 8: [69.83, 20.8533, 16] + [ ecalVeto ] 0 : Hit 9: [67.4221, 16.6826, 15] + [ ecalVeto ] 0 : Hit 10: [67.4221, 16.6826, 13] + [ ecalVeto ] 0 : Hit 11: [69.83, 12.512, 12] + [ ecalVeto ] 0 : Hit 12: [67.4221, 16.6826, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-62.6062, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 3: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-69.83, -4.17066, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -4.17066, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 66.7306, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7298.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 601 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 54.2186, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 126 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6019.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 602 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 54.2186, 25] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 50.0479, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 17 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2940.36; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 603 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 18] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -12.512, 17] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -8.34132, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5711.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 604 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -66.7306, 2] + [ ecalVeto ] 0 : Hit 1: [2.40793, -62.5599, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6028.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 605 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-1.47238, -110.987, 22] + [ ecalVeto ] 0 : Hit 1: [-3.88031, -106.817, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -83.4132, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, -79.2426, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, -75.0719, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, -70.9012, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, -66.7306, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, -62.5599, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, -58.3892, 11] + [ ecalVeto ] 0 : Hit 7: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Hit 8: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 9: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 10: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 11: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 12: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 13: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 14: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3777.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 606 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, -41.7066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, -8.34132, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6962.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 607 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, -4.17066, 25] + [ ecalVeto ] 0 : Hit 1: [-137.789, -2.36672e-14, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, -4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, -2.36672e-14, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, 4.17066, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -2.36672e-14, 17] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 4.17066, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3655.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 608 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, -98.4754, 18] + [ ecalVeto ] 0 : Hit 1: [73.7103, -94.3048, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6083.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 609 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4807.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 610 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3817.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 611 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, 106.817, 21] + [ ecalVeto ] 0 : Hit 1: [-145.948, 102.646, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, 77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-124.277, 73.4515, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11133.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 612 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.88031, -156.865, 20] + [ ecalVeto ] 0 : Hit 1: [3.34348, -152.694, 19] + [ ecalVeto ] 0 : Hit 2: [3.88031, -148.523, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-1.47238, -102.646, 12] + [ ecalVeto ] 0 : Hit 1: [-3.88031, -98.4754, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3460.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 613 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-183.54, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-181.132, -33.3653, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 5] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 58.3892, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5964.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 614 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 33.3653, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4190.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 615 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4729.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 616 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3355.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 617 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-96.8541, -4.17066, 19] + [ ecalVeto ] 0 : Hit 2: [-94.4462, -2.36672e-14, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 81.7928, 1] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 85.9634, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6255.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 618 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5432.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 619 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4371.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 620 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, -2.66454e-15, 22] + [ ecalVeto ] 0 : Hit 1: [60.1983, 4.17066, 21] + [ ecalVeto ] 0 : Hit 2: [62.6062, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 3: [60.1983, 4.17066, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3408.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 621 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [45.7507, -12.512, 15] + [ ecalVeto ] 0 : Hit 2: [45.7507, -12.512, 13] + [ ecalVeto ] 0 : Hit 3: [48.1586, -16.6826, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [40.9348, -12.512, 14] + [ ecalVeto ] 0 : Hit 2: [38.5269, -8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [40.9348, -12.512, 12] + [ ecalVeto ] 0 : Hit 4: [38.5269, -16.6826, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [52.9745, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [55.3824, -12.512, 14] + [ ecalVeto ] 0 : Hit 2: [52.9745, -16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [55.3824, -20.8533, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4122.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 622 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 69.2808, 25] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 66.7306, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 58.3892, 22] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 54.2186, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [-33.711, 50.0479, 19] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 45.8773, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 16] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 37.5359, 15] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 33.3653, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5420.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 623 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, 70.9012, 25] + [ ecalVeto ] 0 : Hit 1: [-137.789, 66.7306, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, 58.3892, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, 62.5599, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, 58.3892, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -90.1341, 15] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -94.3048, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 45.8773, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 37.5359, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -58.3892, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4047.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 624 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5155.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 625 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [112.237, 152.694, 28] + [ ecalVeto ] 0 : Hit 1: [109.829, 148.523, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [76.1183, 115.158, 22] + [ ecalVeto ] 0 : Hit 1: [73.7103, 110.987, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 21] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 20] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 12.512, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [24.0793, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 25.024, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3845; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 626 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 14] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4849.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 627 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -127.67, 21] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -123.499, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -119.329, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -115.158, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -102.646, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -98.4754, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -85.9634, 15] + [ ecalVeto ] 0 : Hit 1: [-52.039, -81.7928, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [52.9745, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [55.3824, -20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [52.9745, -25.024, 13] + [ ecalVeto ] 0 : Hit 3: [55.3824, -29.1946, 12] + [ ecalVeto ] 0 : Hit 4: [52.9745, -25.024, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [48.1586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [45.7507, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [48.1586, -25.024, 12] + [ ecalVeto ] 0 : Hit 3: [45.7507, -29.1946, 11] + [ ecalVeto ] 0 : Hit 4: [48.1586, -25.024, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4367.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 628 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 19] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 18] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 17] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 16] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 8.34132, 14] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 16] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 15] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 12: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 13: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 14: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [37.5914, -106.817, 19] + [ ecalVeto ] 0 : Hit 1: [39.9993, -102.646, 18] + [ ecalVeto ] 0 : Hit 2: [37.5914, -98.4754, 17] + [ ecalVeto ] 0 : Hit 3: [39.9993, -94.3048, 16] + [ ecalVeto ] 0 : Hit 4: [37.5914, -90.1341, 15] + [ ecalVeto ] 0 : Hit 5: [39.9993, -85.9634, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6686.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 629 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [38.5269, -33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [40.9348, -37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2246.63; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 630 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-74.6459, 54.2186, 22] + [ ecalVeto ] 0 : Hit 1: [-77.0538, 50.0479, 21] + [ ecalVeto ] 0 : Hit 2: [-74.6459, 45.8773, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 16] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 41.7066, 15] + [ ecalVeto ] 0 : Hit 3: [-60.1983, 37.5359, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-104.078, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-101.67, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6218.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 631 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -41.7066, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 50.0479, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 9] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7583.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 632 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 8: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Hit 9: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 10: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 11: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6262; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 633 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5796.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 634 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -29.1946, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 58.3892, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5645.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 635 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 6: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5830.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 636 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 10] + [ ecalVeto ] 0 : Hit 2: [-33.711, -58.3892, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -20.8533, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -20.8533, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 8.34132, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -29.1946, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5271.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 637 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -73.4515, 25] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -69.2808, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [60.1983, 37.5359, 25] + [ ecalVeto ] 0 : Hit 1: [62.6062, 33.3653, 24] + [ ecalVeto ] 0 : Hit 2: [60.1983, 29.1946, 23] + [ ecalVeto ] 0 : Hit 3: [62.6062, 25.024, 22] + [ ecalVeto ] 0 : Hit 4: [60.1983, 20.8533, 21] + [ ecalVeto ] 0 : Hit 5: [62.6062, 16.6826, 20] + [ ecalVeto ] 0 : Hit 6: [60.1983, 12.512, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -69.2808, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -73.4515, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -65.1101, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -69.2808, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -65.1101, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -65.1101, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -62.5599, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [24.0793, -33.3653, 5] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5453.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 638 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2405.5; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 639 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [133.909, 115.158, 28] + [ ecalVeto ] 0 : Hit 1: [131.501, 110.987, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [119.461, 106.817, 26] + [ ecalVeto ] 0 : Hit 1: [117.053, 102.646, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [97.7897, 85.9634, 22] + [ ecalVeto ] 0 : Hit 1: [95.3817, 81.7928, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [45.7507, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [48.1586, -41.7066, 20] + [ ecalVeto ] 0 : Hit 2: [45.7507, -37.5359, 19] + [ ecalVeto ] 0 : Hit 3: [48.1586, -41.7066, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [90.5659, 81.7928, 20] + [ ecalVeto ] 0 : Hit 1: [88.1579, 77.6221, 19] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 18] + [ ecalVeto ] 0 : Hit 1: [31.3031, -37.5359, 17] + [ ecalVeto ] 0 : Hit 2: [33.711, -33.3653, 16] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 15] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-140.197, -70.9012, 17] + [ ecalVeto ] 0 : Hit 1: [-137.789, -66.7306, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-125.749, -62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-123.341, -58.3892, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2775.74; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 640 Brem photon produced 81 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, 12.512, 27] + [ ecalVeto ] 0 : Hit 1: [-123.341, 16.6826, 26] + [ ecalVeto ] 0 : Hit 2: [-125.749, 20.8533, 25] + [ ecalVeto ] 0 : Hit 3: [-123.341, 25.024, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 37.5359, 25] + [ ecalVeto ] 0 : Hit 1: [-123.341, 33.3653, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, 41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, 37.5359, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-104.078, 16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, 20.8533, 22] + [ ecalVeto ] 0 : Hit 2: [-104.078, 25.024, 21] + [ ecalVeto ] 0 : Hit 3: [-101.67, 29.1946, 22] + [ ecalVeto ] 0 : Hit 4: [-104.078, 33.3653, 21] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 25.024, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3523.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 641 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5374.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 642 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6614.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 643 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -16.6826, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7792.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 644 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 106.817, 24] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 102.646, 23] + [ ecalVeto ] 0 : Hit 2: [-23.1438, 98.4754, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -83.4132, 21] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -79.2426, 20] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -75.0719, 19] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -70.9012, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 75.0719, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 70.9012, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 66.7306, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 62.5599, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3637.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 645 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 16] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 12.512, 15] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 12.512, 13] + [ ecalVeto ] 0 : Hit 4: [-26.4873, 12.512, 11] + [ ecalVeto ] 0 : Hit 5: [-24.0793, 8.34132, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8046.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 646 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -4.17066, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [11.1041, 94.3048, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 91.7545, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2975.29; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 647 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, 58.3892, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 90.1341, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 85.9634, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 69.2808, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 13] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5412.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 648 Brem photon produced 76 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7754.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 649 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 123.499, 19] + [ ecalVeto ] 0 : Hit 1: [-15.92, 127.67, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4445.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 650 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 54.2186, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5856.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 651 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [116.118, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [116.118, 45.8773, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [97.7897, 60.9395, 14] + [ ecalVeto ] 0 : Hit 1: [95.3817, 56.7688, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [68.8945, 69.2808, 14] + [ ecalVeto ] 0 : Hit 1: [66.4865, 65.1101, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [62.6062, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [60.1983, 54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [62.6062, 50.0479, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6276.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 652 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 20] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 19] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 18] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 17] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, -54.2186, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [-52.039, 81.7928, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4295.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 653 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5184.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 654 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 654 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 177.718, 9] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 173.547, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 1] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4974.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 655 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-173.908, -54.2186, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5973.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 656 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, -110.987, 27] + [ ecalVeto ] 0 : Hit 1: [-124.277, -106.817, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3486.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 657 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1314.52; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 658 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 12] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 25.024, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5123.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 659 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 659 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-124.277, -148.523, 22] + [ ecalVeto ] 0 : Hit 1: [-126.685, -144.353, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -119.329, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -115.158, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -106.817, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -102.646, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -81.7928, 13] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -77.6221, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 102.646, 1] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 106.817, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7083.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 660 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4643.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 661 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [38.5269, 33.3653, 21] + [ ecalVeto ] 0 : Hit 2: [40.9348, 29.1946, 20] + [ ecalVeto ] 0 : Hit 3: [38.5269, 25.024, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [62.6062, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [62.6062, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9105.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 662 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -79.2426, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -75.0719, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -62.5599, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 13] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -54.2186, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5101.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 663 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [118.525, 33.3653, 28] + [ ecalVeto ] 0 : Hit 1: [118.525, 33.3653, 26] + [ ecalVeto ] 0 : Hit 2: [116.118, 29.1946, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 62.5599, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3960.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 664 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, 75.0719, 21] + [ ecalVeto ] 0 : Hit 1: [-173.908, 79.2426, 20] + [ ecalVeto ] 0 : Hit 2: [-176.316, 75.0719, 19] + [ ecalVeto ] 0 : Hit 3: [-173.908, 79.2426, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5883.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 665 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-96.8541, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4870.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 666 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-153.172, 173.547, 22] + [ ecalVeto ] 0 : Hit 1: [-155.58, 169.377, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [133.909, -140.182, 18] + [ ecalVeto ] 0 : Hit 1: [131.501, -136.011, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4198.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 667 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, 73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-117.053, 69.2808, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1488.7; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 668 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 6 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4912.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 669 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, -16.6826, 29] + [ ecalVeto ] 0 : Hit 1: [-130.565, -20.8533, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 60.9395, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, -54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, -58.3892, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 41.7066, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -56.7688, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -60.9395, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 18] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 17] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 15] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 12.512, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5283.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 670 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, 119.329, 18] + [ ecalVeto ] 0 : Hit 1: [8.69618, 115.158, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 79.2426, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 75.0719, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5815.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 671 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5258.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 672 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [59.2627, 94.3048, 13] + [ ecalVeto ] 0 : Hit 1: [61.6707, 90.1341, 12] + [ ecalVeto ] 0 : Hit 2: [59.2627, 85.9634, 11] + [ ecalVeto ] 0 : Hit 3: [61.6707, 90.1341, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 114 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4760.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 673 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [88.1579, 85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [88.1579, 85.9634, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [76.1183, 73.4515, 14] + [ ecalVeto ] 0 : Hit 1: [73.7103, 69.2808, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 106.817, 11] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 102.646, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 169.377, 3] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 173.547, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5385.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 674 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, 45.8773, 29] + [ ecalVeto ] 0 : Hit 1: [-137.789, 50.0479, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 41.7066, 27] + [ ecalVeto ] 0 : Hit 1: [-130.565, 45.8773, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, 45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-123.341, 41.7066, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, 41.7066, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [45.7507, 62.5599, 21] + [ ecalVeto ] 0 : Hit 1: [48.1586, 66.7306, 20] + [ ecalVeto ] 0 : Hit 2: [45.7507, 62.5599, 19] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 37.5359, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [31.3031, 54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [33.711, 50.0479, 14] + [ ecalVeto ] 0 : Hit 2: [31.3031, 54.2186, 13] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5636.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 675 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [3.34348, -161.035, 1] + [ ecalVeto ] 0 : Hit 1: [3.88031, -165.206, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3677.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 676 Brem photon produced 82 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, -81.7928, 16] + [ ecalVeto ] 0 : Hit 1: [73.7103, -77.6221, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9263.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 677 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, -123.499, 22] + [ ecalVeto ] 0 : Hit 1: [44.8152, -119.329, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 198.571, 19] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 194.401, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [39.9993, -102.646, 18] + [ ecalVeto ] 0 : Hit 1: [37.5914, -98.4754, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -33.3653, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -45.8773, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -33.3653, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5252.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 678 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7093.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 679 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2181.95; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 680 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1972.44; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 681 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 131.841, 9] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 131.841, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6195.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 682 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 9: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 10: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5368.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 683 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2911.68; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 684 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6428.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 685 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -123.499, 17] + [ ecalVeto ] 0 : Hit 1: [-15.92, -127.67, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5997.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 686 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [140.197, -29.1946, 26] + [ ecalVeto ] 0 : Hit 1: [140.197, -29.1946, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, 66.7306, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, 62.5599, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 140.182, 13] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 144.353, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4624.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 687 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [148.356, -90.1341, 20] + [ ecalVeto ] 0 : Hit 1: [145.948, -85.9634, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -83.4132, 19] + [ ecalVeto ] 0 : Hit 1: [26.4873, -79.2426, 18] + [ ecalVeto ] 0 : Hit 2: [24.0793, -75.0719, 17] + [ ecalVeto ] 0 : Hit 3: [26.4873, -79.2426, 16] + [ ecalVeto ] 0 : Hit 4: [24.0793, -75.0719, 15] + [ ecalVeto ] 0 : Hit 5: [26.4873, -70.9012, 14] + [ ecalVeto ] 0 : Hit 6: [24.0793, -66.7306, 13] + [ ecalVeto ] 0 : Hit 7: [26.4873, -70.9012, 12] + [ ecalVeto ] 0 : Hit 8: [24.0793, -66.7306, 11] + [ ecalVeto ] 0 : Hit 9: [26.4873, -62.5599, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [25.5517, -85.9634, 14] + [ ecalVeto ] 0 : Hit 1: [23.1438, -90.1341, 13] + [ ecalVeto ] 0 : Hit 2: [25.5517, -94.3048, 12] + [ ecalVeto ] 0 : Hit 3: [23.1438, -98.4754, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4142.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 688 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, -65.1101, 24] + [ ecalVeto ] 0 : Hit 1: [60.1983, -62.5599, 23] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2471.12; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 689 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 87.5839, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 83.4132, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3405.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 690 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-123.341, -33.3653, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [60.1983, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [60.1983, 20.8533, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5453.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 691 Brem photon produced 95 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -136.011, 1] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -140.182, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5697.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 692 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, -69.2808, 13] + [ ecalVeto ] 0 : Hit 1: [-109.829, -73.4515, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5179.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 693 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -58.3892, 20] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -54.2186, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [77.0538, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [77.0538, 41.7066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5955.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 694 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -227.766, 27] + [ ecalVeto ] 0 : Hit 1: [-52.039, -223.595, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -215.254, 25] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -211.083, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -156.865, 18] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -152.694, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -50.0479, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 120 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3436.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 695 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3557.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 696 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3195.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 697 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 29.1946, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3783.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 698 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 87.5839, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, 83.4132, 18] + [ ecalVeto ] 0 : Hit 2: [2.40793, 79.2426, 17] + [ ecalVeto ] 0 : Hit 3: [4.81586, 75.0719, 16] + [ ecalVeto ] 0 : Hit 4: [2.40793, 70.9012, 15] + [ ecalVeto ] 0 : Hit 5: [4.81586, 66.7306, 14] + [ ecalVeto ] 0 : Hit 6: [2.40793, 62.5599, 13] + [ ecalVeto ] 0 : Hit 7: [4.81586, 58.3892, 12] + [ ecalVeto ] 0 : Hit 8: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -12.512, 14] + [ ecalVeto ] 0 : Hit 1: [-33.711, -16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [-33.711, -16.6826, 11] + [ ecalVeto ] 0 : Hit 4: [-31.3031, -12.512, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -25.024, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4487.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 699 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -177.718, 28] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -173.547, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -127.67, 21] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -123.499, 20] + [ ecalVeto ] 0 : Hit 2: [-25.5517, -119.329, 19] + [ ecalVeto ] 0 : Hit 3: [-23.1438, -115.158, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 16] + [ ecalVeto ] 0 : Hit 2: [38.5269, -16.6826, 15] + [ ecalVeto ] 0 : Hit 3: [40.9348, -12.512, 14] + [ ecalVeto ] 0 : Hit 4: [38.5269, -8.34132, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-15.92, -102.646, 16] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -98.4754, 15] + [ ecalVeto ] 0 : Hit 2: [-15.92, -94.3048, 14] + [ ecalVeto ] 0 : Hit 3: [-18.3279, -90.1341, 13] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -87.5839, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [33.711, -8.34132, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -20.8533, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9058.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 700 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7819.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 701 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 165.206, 5] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 161.035, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6180.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 702 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 181.889, 28] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 177.718, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 156.865, 25] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 152.694, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 110.987, 21] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 115.158, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 15] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 14] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 8: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 85.9634, 15] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 81.7928, 14] + [ ecalVeto ] 0 : Hit 2: [-39.9993, 77.6221, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 66.7306, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4796.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 703 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3555.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 704 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, 136.011, 14] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 131.841, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5502.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 705 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 131.841, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 127.67, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 119.329, 15] + [ ecalVeto ] 0 : Hit 1: [-52.039, 115.158, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 106.817, 13] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 102.646, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 94.3048, 11] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 90.1341, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2996.15; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 706 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, -20.8533, 25] + [ ecalVeto ] 0 : Hit 1: [-181.132, -25.024, 24] + [ ecalVeto ] 0 : Hit 2: [-181.132, -25.024, 22] + [ ecalVeto ] 0 : Hit 3: [-176.316, -25.024, 23] + [ ecalVeto ] 0 : Hit 4: [-176.316, -25.024, 21] + [ ecalVeto ] 0 : Hit 5: [-173.908, -29.1946, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 20] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 19] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3198.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 707 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 24 + [ ecalVeto ] 0 : Beginning track merging using 24 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 24 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, 33.3653, 31] + [ ecalVeto ] 0 : Hit 1: [-159.46, 29.1946, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, 29.1946, 29] + [ ecalVeto ] 0 : Hit 1: [-137.789, 25.024, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-154.644, -54.2186, 29] + [ ecalVeto ] 0 : Hit 1: [-152.237, -50.0479, 28] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-140.197, -37.5359, 27] + [ ecalVeto ] 0 : Hit 1: [-137.789, -33.3653, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -60.9395, 27] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -56.7688, 26] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -45.8773, 26] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -41.7066, 25] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -50.0479, 24] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 25] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 24] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-104.078, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, 20.8533, 24] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -41.7066, 24] + [ ecalVeto ] 0 : Hit 1: [-69.83, -37.5359, 23] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 22] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -8.34132, 21] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 22] + [ ecalVeto ] 0 : Hit 2: [-62.6062, -25.024, 21] + [ ecalVeto ] 0 : Hit 3: [-60.1983, -20.8533, 20] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -12.512, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -8.34132, 22] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 20] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -8.34132, 20] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -4.17066, 19] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -2.66454e-15, 18] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 12.512, 20] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 8.34132, 19] + [ ecalVeto ] 0 : Hit 2: [-60.1983, 4.17066, 18] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 18] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 18] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 12.512, 18] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 8.34132, 17] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 4.17066, 16] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 16] + [ ecalVeto ] 0 : Hit 2: [-33.711, 16.6826, 15] + [ ecalVeto ] 0 : Hit 3: [-33.711, 16.6826, 13] + [ ecalVeto ] 0 : Hit 4: [-31.3031, 20.8533, 12] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 14] + [ ecalVeto ] 0 : Track 21: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 10] + [ ecalVeto ] 0 : Track 22: + [ ecalVeto ] 0 : Hit 0: [16.8555, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 6] + [ ecalVeto ] 0 : Track 23: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 24 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1293.33; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 708 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-66.4865, -131.841, 12] + [ ecalVeto ] 0 : Hit 1: [-68.8945, -127.67, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -127.67, 10] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -123.499, 9] + [ ecalVeto ] 0 : Hit 2: [-73.7103, -127.67, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-52.039, -90.1341, 6] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -85.9634, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6076.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 709 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [26.4873, -37.5359, 24] + [ ecalVeto ] 0 : Hit 2: [24.0793, -33.3653, 23] + [ ecalVeto ] 0 : Hit 3: [26.4873, -29.1946, 22] + [ ecalVeto ] 0 : Hit 4: [24.0793, -25.024, 21] + [ ecalVeto ] 0 : Hit 5: [26.4873, -29.1946, 20] + [ ecalVeto ] 0 : Hit 6: [24.0793, -25.024, 19] + [ ecalVeto ] 0 : Hit 7: [26.4873, -20.8533, 18] + [ ecalVeto ] 0 : Hit 8: [24.0793, -16.6826, 17] + [ ecalVeto ] 0 : Hit 9: [24.0793, -16.6826, 15] + [ ecalVeto ] 0 : Hit 10: [26.4873, -20.8533, 14] + [ ecalVeto ] 0 : Hit 11: [24.0793, -16.6826, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 13] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3559.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 710 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 14 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, 83.4132, 27] + [ ecalVeto ] 0 : Hit 1: [-145.013, 79.2426, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 75.0719, 25] + [ ecalVeto ] 0 : Hit 1: [-131.501, 77.6221, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, 65.1101, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, 69.2808, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 65.1101, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 60.9395, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [159.46, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [161.868, 16.6826, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 50.0479, 13] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [77.0538, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [77.0538, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 10] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 6] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 14 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6863.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 711 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-212.435, 20.8533, 29] + [ ecalVeto ] 0 : Hit 1: [-210.027, 25.024, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [173.908, -20.8533, 29] + [ ecalVeto ] 0 : Hit 1: [176.316, -16.6826, 28] + [ ecalVeto ] 0 : Hit 2: [173.908, -12.512, 27] + [ ecalVeto ] 0 : Hit 3: [176.316, -8.34132, 26] + [ ecalVeto ] 0 : Hit 4: [173.908, -12.512, 25] + [ ecalVeto ] 0 : Hit 5: [176.316, -8.34132, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-154.644, 20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [-152.237, 25.024, 22] + [ ecalVeto ] 0 : Hit 2: [-147.421, 25.024, 23] + [ ecalVeto ] 0 : Hit 3: [-145.013, 20.8533, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-137.789, 25.024, 22] + [ ecalVeto ] 0 : Hit 1: [-140.197, 20.8533, 21] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-132.973, 25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, 20.8533, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-118.525, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 20.8533, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-111.302, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, 16.6826, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2259.79; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 712 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -236.107, 27] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -231.937, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [-33.711, -41.7066, 7] + [ ecalVeto ] 0 : Hit 5: [-31.3031, -45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4797.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 713 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -83.4132, 22] + [ ecalVeto ] 0 : Hit 1: [16.8555, -79.2426, 21] + [ ecalVeto ] 0 : Hit 2: [19.2635, -75.0719, 20] + [ ecalVeto ] 0 : Hit 3: [16.8555, -70.9012, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -70.9012, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, -66.7306, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, -62.5599, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, -58.3892, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 66.7306, 11] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 62.5599, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 45.8773, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4763.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 714 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6392.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 715 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, -37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, -41.7066, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3350.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 716 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -156.865, 27] + [ ecalVeto ] 0 : Hit 1: [-117.053, -152.694, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -90.1341, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -85.9634, 18] + [ ecalVeto ] 0 : Hit 2: [-76.1183, -81.7928, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -73.4515, 16] + [ ecalVeto ] 0 : Hit 2: [-68.8945, -69.2808, 15] + [ ecalVeto ] 0 : Hit 3: [-66.4865, -65.1101, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -37.5359, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3046.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 717 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -12.512, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 41.7066, 3] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3162.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 718 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10187; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 719 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-81.8697, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [-82.4065, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6025.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 720 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 91.7545, 22] + [ ecalVeto ] 0 : Hit 1: [2.40793, 87.5839, 21] + [ ecalVeto ] 0 : Hit 2: [4.81586, 83.4132, 20] + [ ecalVeto ] 0 : Hit 3: [2.40793, 79.2426, 19] + [ ecalVeto ] 0 : Hit 4: [4.81586, 75.0719, 18] + [ ecalVeto ] 0 : Hit 5: [2.40793, 70.9012, 17] + [ ecalVeto ] 0 : Hit 6: [4.81586, 66.7306, 16] + [ ecalVeto ] 0 : Hit 7: [2.40793, 62.5599, 15] + [ ecalVeto ] 0 : Hit 8: [4.81586, 66.7306, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5379.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 721 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-26.4873, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -45.8773, 3] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -50.0479, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -62.5599, 1] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -66.7306, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4560.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 722 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -8.34132, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4232.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 723 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 50.0479, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, 45.8773, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 16] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 29.1946, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6017.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 724 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, -58.3892, 23] + [ ecalVeto ] 0 : Hit 1: [-159.46, -54.2186, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, -50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-145.013, -54.2186, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 58.3892, 11] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 54.2186, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5641.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 725 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 156.865, 33] + [ ecalVeto ] 0 : Hit 1: [-102.606, 152.694, 32] + [ ecalVeto ] 0 : Hit 2: [-105.013, 148.523, 31] + [ ecalVeto ] 0 : Hit 3: [-102.606, 144.353, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 12] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-205.211, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-202.803, 29.1946, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6095.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 726 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 98.4754, 8] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 94.3048, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6718.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 727 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 70.9012, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 66.7306, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4555.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 728 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 70.9012, 21] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 20] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 62.5599, 19] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 58.3892, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [16.8555, -20.8533, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2299.86; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 729 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5139.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 730 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [69.83, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [67.4221, 50.0479, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [74.6459, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [74.6459, 29.1946, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4633.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 731 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, 85.9634, 24] + [ ecalVeto ] 0 : Hit 1: [80.9341, 81.7928, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [76.1183, 81.7928, 22] + [ ecalVeto ] 0 : Hit 1: [73.7103, 77.6221, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5326.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 732 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, -119.329, 22] + [ ecalVeto ] 0 : Hit 1: [37.5914, -115.158, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 111 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5247.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 733 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, -94.3048, 32] + [ ecalVeto ] 0 : Hit 1: [37.5914, -90.1341, 31] + [ ecalVeto ] 0 : Hit 2: [39.9993, -85.9634, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, -79.2426, 29] + [ ecalVeto ] 0 : Hit 1: [33.711, -75.0719, 28] + [ ecalVeto ] 0 : Hit 2: [31.3031, -70.9012, 27] + [ ecalVeto ] 0 : Hit 3: [33.711, -66.7306, 26] + [ ecalVeto ] 0 : Hit 4: [31.3031, -62.5599, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 24] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 23] + [ ecalVeto ] 0 : Hit 2: [26.4873, -54.2186, 22] + [ ecalVeto ] 0 : Hit 3: [24.0793, -50.0479, 21] + [ ecalVeto ] 0 : Hit 4: [26.4873, -54.2186, 20] + [ ecalVeto ] 0 : Hit 5: [24.0793, -50.0479, 19] + [ ecalVeto ] 0 : Hit 6: [26.4873, -45.8773, 18] + [ ecalVeto ] 0 : Hit 7: [24.0793, -41.7066, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1741.08; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 734 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 7: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 8: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 9: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 10: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6137.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 735 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5210.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 736 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8180.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 737 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2930.63; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 738 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-137.789, -8.34132, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6788.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 739 Brem photon produced 87 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7127.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 740 Brem photon produced 78 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 18] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 14] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 13] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 12] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 9: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5400.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 741 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1932.99; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 742 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, -41.7066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3605.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 743 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 21 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3302.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 744 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3744.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 745 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 115.158, 25] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 110.987, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 17] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 16] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 15] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 14] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 7: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 9: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [40.9348, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [40.9348, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [38.5269, 33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4438.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 746 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 14] + [ ecalVeto ] 0 : Hit 2: [16.8555, 45.8773, 13] + [ ecalVeto ] 0 : Hit 3: [19.2635, 50.0479, 12] + [ ecalVeto ] 0 : Hit 4: [16.8555, 45.8773, 11] + [ ecalVeto ] 0 : Hit 5: [19.2635, 50.0479, 10] + [ ecalVeto ] 0 : Hit 6: [16.8555, 45.8773, 9] + [ ecalVeto ] 0 : Hit 7: [19.2635, 50.0479, 8] + [ ecalVeto ] 0 : Hit 8: [16.8555, 54.2186, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 45.8773, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 50.0479, 13] + [ ecalVeto ] 0 : Hit 4: [26.4873, 45.8773, 12] + [ ecalVeto ] 0 : Hit 5: [24.0793, 41.7066, 11] + [ ecalVeto ] 0 : Hit 6: [26.4873, 37.5359, 10] + [ ecalVeto ] 0 : Hit 7: [24.0793, 41.7066, 9] + [ ecalVeto ] 0 : Hit 8: [24.0793, 41.7066, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 62.5599, 9] + [ ecalVeto ] 0 : Hit 4: [16.8555, 62.5599, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 10: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 11: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 12: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Hit 13: [4.81586, 41.7066, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8087.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 747 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [60.1983, -12.512, 23] + [ ecalVeto ] 0 : Hit 1: [62.6062, -8.34132, 22] + [ ecalVeto ] 0 : Hit 2: [60.1983, -12.512, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, -4.17066, 20] + [ ecalVeto ] 0 : Hit 1: [52.9745, -8.34132, 19] + [ ecalVeto ] 0 : Hit 2: [55.3824, -4.17066, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2184.28; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 748 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, -33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [52.9745, -33.3653, 19] + [ ecalVeto ] 0 : Hit 2: [55.3824, -29.1946, 18] + [ ecalVeto ] 0 : Hit 3: [52.9745, -33.3653, 17] + [ ecalVeto ] 0 : Hit 4: [55.3824, -29.1946, 16] + [ ecalVeto ] 0 : Hit 5: [52.9745, -33.3653, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4658.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 749 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4201.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 750 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -8.34132, 25] + [ ecalVeto ] 0 : Hit 1: [-116.118, -4.17066, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -8.34132, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, -4.17066, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -12.512, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -8.34132, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -50.0479, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7661.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 751 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3492.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 752 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 21] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 20] + [ ecalVeto ] 0 : Hit 3: [24.0793, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 4: [26.4873, 4.17066, 18] + [ ecalVeto ] 0 : Hit 5: [24.0793, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 6: [26.4873, 4.17066, 16] + [ ecalVeto ] 0 : Hit 7: [24.0793, 8.34132, 15] + [ ecalVeto ] 0 : Hit 8: [24.0793, 8.34132, 13] + [ ecalVeto ] 0 : Hit 9: [19.2635, 8.34132, 14] + [ ecalVeto ] 0 : Hit 10: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Hit 11: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Hit 12: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 13: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 14: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 15: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 16: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 17: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1287.07; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 753 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 15] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -87.5839, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -83.4132, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [197.987, 54.2186, 2] + [ ecalVeto ] 0 : Hit 1: [197.987, 54.2186, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4703.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 754 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 58.3892, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 54.2186, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 54.2186, 9] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 58.3892, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6224.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 755 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [154.644, 54.2186, 26] + [ ecalVeto ] 0 : Hit 1: [154.644, 54.2186, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, -2.66454e-15, 22] + [ ecalVeto ] 0 : Hit 1: [45.7507, -4.17066, 21] + [ ecalVeto ] 0 : Hit 2: [48.1586, -8.34132, 20] + [ ecalVeto ] 0 : Hit 3: [45.7507, -12.512, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, -20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, -16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, -20.8533, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3596.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 756 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -65.1101, 19] + [ ecalVeto ] 0 : Hit 1: [-102.606, -69.2808, 18] + [ ecalVeto ] 0 : Hit 2: [-102.606, -69.2808, 16] + [ ecalVeto ] 0 : Hit 3: [-97.7897, -69.2808, 17] + [ ecalVeto ] 0 : Hit 4: [-97.7897, -69.2808, 15] + [ ecalVeto ] 0 : Hit 5: [-95.3817, -73.4515, 14] + [ ecalVeto ] 0 : Hit 6: [-97.7897, -69.2808, 13] + [ ecalVeto ] 0 : Hit 7: [-95.3817, -73.4515, 12] + [ ecalVeto ] 0 : Hit 8: [-97.7897, -69.2808, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -73.4515, 11] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -77.6221, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -90.1341, 9] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -94.3048, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 2] + [ ecalVeto ] 0 : Hit 4: [16.8555, -12.512, 1] + [ ecalVeto ] 0 : Hit 5: [19.2635, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6620.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 757 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [40.9348, 37.5359, 22] + [ ecalVeto ] 0 : Hit 2: [38.5269, 33.3653, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 33.3653, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, 29.1946, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, 25.024, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, 20.8533, 17] + [ ecalVeto ] 0 : Hit 4: [31.3031, 20.8533, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4495.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 758 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [119.461, -90.1341, 28] + [ ecalVeto ] 0 : Hit 1: [117.053, -85.9634, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [112.237, -85.9634, 26] + [ ecalVeto ] 0 : Hit 1: [109.829, -81.7928, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [105.013, -81.7928, 24] + [ ecalVeto ] 0 : Hit 1: [102.606, -77.6221, 23] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -50.0479, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [24.0793, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5743.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 759 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, 8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [26.4873, -4.17066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8093.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 760 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8129.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 761 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [60.1983, -54.2186, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1716.38; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 762 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -123.499, 11] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -123.499, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [16.8555, -54.2186, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [16.8555, -45.8773, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -50.0479, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6301.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 763 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5352.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 764 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-117.053, -94.3048, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, -90.1341, 23] + [ ecalVeto ] 0 : Hit 1: [-102.606, -85.9634, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -77.6221, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -73.4515, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -54.2186, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2143.93; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 765 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -123.499, 23] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -119.329, 22] + [ ecalVeto ] 0 : Hit 2: [-3.88031, -115.158, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -50.0479, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2874.24; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 766 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 50.0479, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 45.8773, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6542.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 767 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -115.158, 25] + [ ecalVeto ] 0 : Hit 1: [-117.053, -110.987, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -90.1341, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -85.9634, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5817.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 768 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [69.83, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [67.4221, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [69.83, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5602.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 769 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3656.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 770 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-66.4865, 190.23, 32] + [ ecalVeto ] 0 : Hit 1: [-68.8945, 186.059, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -169.377, 17] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -173.547, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 54.2186, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -181.889, 15] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -186.059, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7473.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 771 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 15 + [ ecalVeto ] 0 : Beginning track merging using 15 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, 115.158, 29] + [ ecalVeto ] 0 : Hit 1: [-160.396, 110.987, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, 106.817, 25] + [ ecalVeto ] 0 : Hit 1: [-131.501, 110.987, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-117.053, 102.646, 22] + [ ecalVeto ] 0 : Hit 1: [-119.461, 98.4754, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 81.7928, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 77.6221, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 73.4515, 14] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 77.6221, 13] + [ ecalVeto ] 0 : Hit 2: [-80.9341, 73.4515, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 90.1341, 13] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 85.9634, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 11] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 54.2186, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-166.684, 58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-169.092, 54.2186, 7] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 62.5599, 5] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 58.3892, 4] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-176.316, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-173.908, 45.8773, 4] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5590.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 772 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 66.7306, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 58.3892, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 54.2186, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5045.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 773 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4181.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 774 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6468.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 775 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 27] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 26] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 62.5599, 24] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 58.3892, 23] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 54.2186, 22] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 50.0479, 21] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 45.8773, 20] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 41.7066, 19] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 37.5359, 18] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 33.3653, 17] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 29.1946, 16] + [ ecalVeto ] 0 : Hit 11: [-4.81586, 25.024, 15] + [ ecalVeto ] 0 : Hit 12: [-2.40793, 20.8533, 14] + [ ecalVeto ] 0 : Hit 13: [-4.81586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 14: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -119.329, 25] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -115.158, 24] + [ ecalVeto ] 0 : Hit 2: [-25.5517, -110.987, 23] + [ ecalVeto ] 0 : Hit 3: [-23.1438, -106.817, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -94.3048, 21] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -90.1341, 20] + [ ecalVeto ] 0 : Hit 2: [-25.5517, -85.9634, 19] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -83.4132, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -62.5599, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -58.3892, 12] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -54.2186, 11] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -50.0479, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [108.894, -25.024, 3] + [ ecalVeto ] 0 : Hit 1: [111.302, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5293.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 776 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -79.2426, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, -75.0719, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 81.7928, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-74.6459, 20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [-77.0538, 16.6826, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4537.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 777 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3716.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 778 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 102.646, 28] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 98.4754, 27] + [ ecalVeto ] 0 : Hit 2: [-30.3676, 94.3048, 26] + [ ecalVeto ] 0 : Hit 3: [-32.7755, 90.1341, 25] + [ ecalVeto ] 0 : Hit 4: [-30.3676, 85.9634, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 16] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 50.0479, 15] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 45.8773, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [126.685, 77.6221, 6] + [ ecalVeto ] 0 : Hit 1: [124.277, 73.4515, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4003.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 779 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, -8.34132, 27] + [ ecalVeto ] 0 : Hit 1: [-130.565, -12.512, 26] + [ ecalVeto ] 0 : Hit 2: [-132.973, -16.6826, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-123.341, -66.7306, 26] + [ ecalVeto ] 0 : Hit 1: [-125.749, -70.9012, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -16.6826, 25] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 24] + [ ecalVeto ] 0 : Hit 2: [-111.302, -20.8533, 25] + [ ecalVeto ] 0 : Hit 3: [-108.894, -25.024, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3973.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 780 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4446.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 781 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -219.425, 29] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -215.254, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3742.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 782 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, -140.182, 22] + [ ecalVeto ] 0 : Hit 1: [15.92, -136.011, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 17] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -20.8533, 16] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -25.024, 15] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -29.1946, 14] + [ ecalVeto ] 0 : Hit 5: [-19.2635, -25.024, 13] + [ ecalVeto ] 0 : Hit 6: [-16.8555, -29.1946, 12] + [ ecalVeto ] 0 : Hit 7: [-19.2635, -33.3653, 11] + [ ecalVeto ] 0 : Hit 8: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Hit 9: [-19.2635, -33.3653, 9] + [ ecalVeto ] 0 : Hit 10: [-16.8555, -29.1946, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [3.88031, -106.817, 18] + [ ecalVeto ] 0 : Hit 1: [3.34348, -102.646, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -91.7545, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -87.5839, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -83.4132, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -79.2426, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6861.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 783 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 190.23, 25] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 186.059, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 37.5359, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5577.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 784 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, -98.4754, 28] + [ ecalVeto ] 0 : Hit 1: [102.606, -94.3048, 27] + [ ecalVeto ] 0 : Hit 2: [105.013, -90.1341, 26] + [ ecalVeto ] 0 : Hit 3: [102.606, -85.9634, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2614.58; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 785 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 60.9395, 13] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [33.711, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [31.3031, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [33.711, 8.34132, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -69.2808, 1] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -73.4515, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [15.92, -102.646, 1] + [ ecalVeto ] 0 : Hit 1: [18.3279, -106.817, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9349.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 786 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 25.024, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -12.512, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -29.1946, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 12317.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 787 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 6: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 10: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8011.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 788 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [77.0538, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [74.6459, -37.5359, 15] + [ ecalVeto ] 0 : Hit 2: [77.0538, -41.7066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, -37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [67.4221, -33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [69.83, -37.5359, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5968.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 789 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 202.742, 29] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 198.571, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 186.059, 27] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 181.889, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [37.5914, -106.817, 15] + [ ecalVeto ] 0 : Hit 1: [39.9993, -102.646, 14] + [ ecalVeto ] 0 : Hit 2: [37.5914, -98.4754, 13] + [ ecalVeto ] 0 : Hit 3: [39.9993, -94.3048, 12] + [ ecalVeto ] 0 : Hit 4: [37.5914, -90.1341, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [32.7755, -81.7928, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, -79.2426, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -20.8533, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4955.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 790 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 62.5599, 21] + [ ecalVeto ] 0 : Hit 1: [31.3031, 62.5599, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [19.2635, 58.3892, 14] + [ ecalVeto ] 0 : Hit 2: [16.8555, 54.2186, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5727.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 791 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, -16.6826, 22] + [ ecalVeto ] 0 : Hit 1: [60.1983, -12.512, 21] + [ ecalVeto ] 0 : Hit 2: [62.6062, -16.6826, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2571.33; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 792 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 58.3892, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4385.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 793 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 9: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Hit 10: [-9.63173, 16.6826, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5135.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 794 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2549.92; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 795 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-155.58, 119.329, 13] + [ ecalVeto ] 0 : Hit 1: [-153.172, 115.158, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7505.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 796 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, -94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, -90.1341, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, -81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-117.053, -77.6221, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, -65.1101, 19] + [ ecalVeto ] 0 : Hit 1: [-102.606, -60.9395, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -50.0479, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 56.7688, 8] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 52.5982, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4346.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 797 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4392.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 798 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [118.525, -25.024, 24] + [ ecalVeto ] 0 : Hit 1: [116.118, -29.1946, 23] + [ ecalVeto ] 0 : Hit 2: [118.525, -33.3653, 22] + [ ecalVeto ] 0 : Hit 3: [116.118, -37.5359, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-169.092, 4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-166.684, -2.36672e-14, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-147.421, -2.36672e-14, 19] + [ ecalVeto ] 0 : Hit 1: [-145.013, -4.17066, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, -8.34132, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -12.512, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2567.72; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 799 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, 20.8533, 33] + [ ecalVeto ] 0 : Hit 1: [-181.132, 16.6826, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 83.4132, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 83.4132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 79.2426, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [24.0793, 66.7306, 5] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4759.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 800 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 87.5839, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, 83.4132, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [62.6062, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [60.1983, 12.512, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [55.3824, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [55.3824, -12.512, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [40.9348, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [38.5269, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [40.9348, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [38.5269, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4219.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 801 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 90.1341, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, 33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 37.5359, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 41.7066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5176.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 802 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-102.606, 110.987, 24] + [ ecalVeto ] 0 : Hit 1: [-105.013, 106.817, 23] + [ ecalVeto ] 0 : Hit 2: [-105.013, 106.817, 21] + [ ecalVeto ] 0 : Hit 3: [-102.606, 102.646, 20] + [ ecalVeto ] 0 : Hit 4: [-105.013, 98.4754, 19] + [ ecalVeto ] 0 : Hit 5: [-102.606, 94.3048, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [-33.711, -8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -4.17066, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [48.1586, -58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [45.7507, -54.2186, 13] + [ ecalVeto ] 0 : Hit 2: [48.1586, -50.0479, 12] + [ ecalVeto ] 0 : Hit 3: [45.7507, -45.8773, 11] + [ ecalVeto ] 0 : Hit 4: [48.1586, -41.7066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -58.3892, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -54.2186, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -50.0479, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-15.92, -94.3048, 8] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -90.1341, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4343.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 803 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-116.118, -12.512, 24] + [ ecalVeto ] 0 : Hit 1: [-118.525, -16.6826, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [77.0538, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [74.6459, 4.17066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4563.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 804 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5659.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 805 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4381.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 806 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 85.9634, 15] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 81.7928, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 73.4515, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 11] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5346.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 807 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 13] + [ ecalVeto ] 0 : Hit 4: [2.40793, -45.8773, 11] + [ ecalVeto ] 0 : Hit 5: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5817.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 808 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, 29.1946, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, 33.3653, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6738.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 809 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 9 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2436.02; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 810 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 54.2186, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 50.0479, 14] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 45.8773, 13] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 41.7066, 12] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 37.5359, 11] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 9: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 10: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 33.3653, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6229.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 811 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [66.4865, -181.889, 25] + [ ecalVeto ] 0 : Hit 1: [68.8945, -177.718, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4458.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 812 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 12.512, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 8: [4.81586, 25.024, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [24.0793, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7041.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 813 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6055.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 814 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -41.7066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4295.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 815 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3381.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 816 Brem photon produced 77 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4564.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 817 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6259.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 818 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -161.035, 23] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -165.206, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -165.206, 21] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -169.377, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [112.237, -119.329, 18] + [ ecalVeto ] 0 : Hit 1: [109.829, -115.158, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -79.2426, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -75.0719, 15] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -70.9012, 14] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -66.7306, 13] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -62.5599, 12] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3315.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 819 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [176.316, 58.3892, 26] + [ ecalVeto ] 0 : Hit 1: [173.908, 54.2186, 25] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5412.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 820 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 25.024, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, 12.512, 11] + [ ecalVeto ] 0 : Hit 4: [33.711, 8.34132, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -161.035, 14] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -156.865, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -131.841, 14] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -136.011, 13] + [ ecalVeto ] 0 : Hit 2: [-39.9993, -136.011, 11] + [ ecalVeto ] 0 : Hit 3: [-37.5914, -131.841, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -144.353, 12] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -140.182, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -119.329, 11] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -115.158, 10] + [ ecalVeto ] 0 : Hit 2: [-39.9993, -110.987, 9] + [ ecalVeto ] 0 : Hit 3: [-44.8152, -110.987, 10] + [ ecalVeto ] 0 : Hit 4: [-47.2231, -106.817, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-52.039, -131.841, 10] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -127.67, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -110.987, 10] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -106.817, 9] + [ ecalVeto ] 0 : Hit 2: [-30.3676, -102.646, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3643.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 821 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 12: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 13: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 14: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 15: [-2.40793, -12.512, 0] + [ ecalVeto ] 0 : Hit 16: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Hit 17: [-9.63173, -16.6826, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-176.316, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-173.908, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 132 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4826.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 822 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -102.646, 26] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -98.4754, 25] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2651.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 823 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 18 + [ ecalVeto ] 0 : Beginning track merging using 18 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 18 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, -2.36672e-14, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, -4.17066, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, 41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 37.5359, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, -4.17066, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -2.36672e-14, 17] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -4.17066, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 54.2186, 13] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 50.0479, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 12] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 10] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [26.4873, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 50.0479, 7] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 140.182, 3] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 136.011, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 18 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5440.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 824 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, -110.987, 18] + [ ecalVeto ] 0 : Hit 1: [8.69618, -106.817, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 9: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 10: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3529.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 825 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -29.1946, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 8: [2.40793, -37.5359, 1] + [ ecalVeto ] 0 : Hit 9: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 125 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6759.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 826 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 223.595, 21] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 219.425, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-197.987, -29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-195.579, -25.024, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [48.1586, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [48.1586, -41.7066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [33.711, -33.3653, 14] + [ ecalVeto ] 0 : Hit 2: [31.3031, -29.1946, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-161.868, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-159.46, -4.17066, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-140.197, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-140.197, 12.512, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-173.908, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-176.316, 8.34132, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 111 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7351.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 827 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5647.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 828 Brem photon produced 89 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 17 + [ ecalVeto ] 0 : Beginning track merging using 17 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 14 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [59.2627, 169.377, 33] + [ ecalVeto ] 0 : Hit 1: [61.6707, 165.206, 32] + [ ecalVeto ] 0 : Hit 2: [59.2627, 161.035, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [68.8945, 152.694, 30] + [ ecalVeto ] 0 : Hit 1: [66.4865, 148.523, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [80.9341, 131.841, 27] + [ ecalVeto ] 0 : Hit 1: [83.3421, 127.67, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [88.1579, 119.329, 25] + [ ecalVeto ] 0 : Hit 1: [90.5659, 115.158, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [90.5659, 98.4754, 22] + [ ecalVeto ] 0 : Hit 1: [88.1579, 94.3048, 21] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [73.7103, 85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [76.1183, 81.7928, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [55.3824, 62.5599, 14] + [ ecalVeto ] 0 : Hit 1: [52.9745, 58.3892, 13] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 6] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 14 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5921.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 829 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5639.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 830 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4919.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 831 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 8: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3188.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 832 Brem photon produced 89 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 83.4132, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 79.2426, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 75.0719, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 70.9012, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4303.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 833 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [102.606, -69.2808, 33] + [ ecalVeto ] 0 : Hit 1: [105.013, -73.4515, 32] + [ ecalVeto ] 0 : Hit 2: [102.606, -77.6221, 31] + [ ecalVeto ] 0 : Hit 3: [105.013, -81.7928, 30] + [ ecalVeto ] 0 : Hit 4: [97.7897, -77.6221, 32] + [ ecalVeto ] 0 : Hit 5: [97.7897, -77.6221, 30] + [ ecalVeto ] 0 : Hit 6: [95.3817, -73.4515, 29] + [ ecalVeto ] 0 : Hit 7: [97.7897, -69.2808, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-145.013, -37.5359, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-123.341, -33.3653, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7284.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 834 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 834 Brem photon produced 75 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 50.0479, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5026.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 835 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5143.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 836 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7715.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 837 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 70.9012, 25] + [ ecalVeto ] 0 : Hit 1: [33.711, 75.0719, 24] + [ ecalVeto ] 0 : Hit 2: [31.3031, 70.9012, 23] + [ ecalVeto ] 0 : Hit 3: [33.711, 66.7306, 22] + [ ecalVeto ] 0 : Hit 4: [31.3031, 62.5599, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 54.2186, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, 50.0479, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-130.565, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-132.973, 16.6826, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-166.684, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-169.092, -54.2186, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5046.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 838 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1973.56; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 839 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4195.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 840 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 1] + [ ecalVeto ] 0 : Hit 6: [4.81586, -41.7066, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -37.5359, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, -41.7066, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [89.6303, 50.0479, 4] + [ ecalVeto ] 0 : Hit 1: [89.0935, 45.8773, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [125.749, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [125.749, 4.17066, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3820.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 841 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 2: [31.3031, 4.17066, 17] + [ ecalVeto ] 0 : Hit 3: [33.711, 8.34132, 16] + [ ecalVeto ] 0 : Hit 4: [31.3031, 12.512, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-94.4462, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [-96.8541, -45.8773, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4974.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 842 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 70.9012, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 79.2426, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 75.0719, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Hit 6: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 121 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6760.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 843 Brem photon produced 80 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5179.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 844 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, -52.5982, 26] + [ ecalVeto ] 0 : Hit 1: [81.8697, -50.0479, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -148.523, 19] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -144.353, 18] + [ ecalVeto ] 0 : Hit 2: [-3.88031, -140.182, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3958.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 845 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-173.908, -4.17066, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [141.132, -110.987, 14] + [ ecalVeto ] 0 : Hit 1: [141.132, -110.987, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 52.5982, 13] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 52.5982, 11] + [ ecalVeto ] 0 : Hit 2: [-90.5659, 56.7688, 13] + [ ecalVeto ] 0 : Hit 3: [-88.1579, 52.5982, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 60.9395, 13] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 56.7688, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 41.7066, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7025.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 846 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-155.58, 152.694, 21] + [ ecalVeto ] 0 : Hit 1: [-153.172, 148.523, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [33.711, 8.34132, 18] + [ ecalVeto ] 0 : Hit 2: [31.3031, 4.17066, 17] + [ ecalVeto ] 0 : Hit 3: [33.711, -2.66454e-15, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [33.711, -8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [33.711, -16.6826, 16] + [ ecalVeto ] 0 : Hit 3: [33.711, -16.6826, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-105.013, 115.158, 15] + [ ecalVeto ] 0 : Hit 1: [-102.606, 110.987, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [45.7507, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [45.7507, -20.8533, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 102.646, 13] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 98.4754, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3597.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 847 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [52.9745, -33.3653, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [38.5269, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [40.9348, -29.1946, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5107.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 848 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, 165.206, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, 161.035, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, 156.865, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, 152.694, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 152.694, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 148.523, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 140.182, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 136.011, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4315.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 849 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, -37.5359, 27] + [ ecalVeto ] 0 : Hit 1: [-166.684, -33.3653, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-145.013, -29.1946, 24] + [ ecalVeto ] 0 : Hit 1: [-147.421, -25.024, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, -25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, -20.8533, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4101.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 850 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 21] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 20] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 19] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -50.0479, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 14] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 13] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4430.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 851 Brem photon produced 80 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4796.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 852 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1260.47; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 853 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, -62.5599, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, -58.3892, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -52.5982, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-101.67, -45.8773, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -33.3653, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [-26.4873, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6608.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 854 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, 73.4515, 18] + [ ecalVeto ] 0 : Hit 1: [102.606, 69.2808, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3124.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 855 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, 65.1101, 16] + [ ecalVeto ] 0 : Hit 1: [102.606, 60.9395, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2784.36; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 856 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5972.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 857 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, -20.8533, 24] + [ ecalVeto ] 0 : Hit 1: [52.9745, -25.024, 23] + [ ecalVeto ] 0 : Hit 2: [55.3824, -20.8533, 22] + [ ecalVeto ] 0 : Hit 3: [52.9745, -25.024, 21] + [ ecalVeto ] 0 : Hit 4: [55.3824, -20.8533, 20] + [ ecalVeto ] 0 : Hit 5: [52.9745, -25.024, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, -16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [45.7507, -20.8533, 17] + [ ecalVeto ] 0 : Hit 2: [48.1586, -16.6826, 16] + [ ecalVeto ] 0 : Hit 3: [45.7507, -20.8533, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, -20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [33.711, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 8: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 9: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 8: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 9: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5050.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 858 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 9: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5676.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 859 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 17 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1981.88; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 860 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -77.6221, 33] + [ ecalVeto ] 0 : Hit 1: [-52.039, -73.4515, 32] + [ ecalVeto ] 0 : Hit 2: [-54.4469, -69.2808, 31] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -66.7306, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -66.7306, 29] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 28] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -58.3892, 27] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -54.2186, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-81.8697, -41.7066, 26] + [ ecalVeto ] 0 : Hit 1: [-82.4065, -45.8773, 25] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 25] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 24] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -50.0479, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-33.711, -41.7066, 21] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -37.5359, 20] + [ ecalVeto ] 0 : Hit 3: [-33.711, -33.3653, 19] + [ ecalVeto ] 0 : Hit 4: [-31.3031, -29.1946, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -29.1946, 20] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -25.024, 19] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -20.8533, 18] + [ ecalVeto ] 0 : Hit 3: [-48.1586, -16.6826, 17] + [ ecalVeto ] 0 : Hit 4: [-48.1586, -16.6826, 15] + [ ecalVeto ] 0 : Hit 5: [-52.9745, -16.6826, 16] + [ ecalVeto ] 0 : Hit 6: [-52.9745, -16.6826, 14] + [ ecalVeto ] 0 : Hit 7: [-55.3824, -12.512, 13] + [ ecalVeto ] 0 : Hit 8: [-52.9745, -8.34132, 12] + [ ecalVeto ] 0 : Hit 9: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 16] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -20.8533, 15] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -25.024, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -12.512, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -4.17066, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1855.11; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 861 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3531.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 862 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4699.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 863 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 186.059, 31] + [ ecalVeto ] 0 : Hit 1: [-109.829, 181.889, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, 173.547, 29] + [ ecalVeto ] 0 : Hit 1: [-102.606, 169.377, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 54.2186, 10] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 50.0479, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8514.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 864 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -62.5599, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5659.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 865 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4498.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 866 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [167.62, -173.547, 33] + [ ecalVeto ] 0 : Hit 1: [170.028, -169.377, 32] + [ ecalVeto ] 0 : Hit 2: [167.62, -165.206, 31] + [ ecalVeto ] 0 : Hit 3: [170.028, -169.377, 30] + [ ecalVeto ] 0 : Hit 4: [167.62, -165.206, 29] + [ ecalVeto ] 0 : Hit 5: [170.028, -169.377, 28] + [ ecalVeto ] 0 : Hit 6: [167.62, -165.206, 27] + [ ecalVeto ] 0 : Hit 7: [170.028, -169.377, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [148.356, -90.1341, 20] + [ ecalVeto ] 0 : Hit 1: [145.948, -85.9634, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3811.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 867 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4699.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 868 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-197.987, -79.2426, 31] + [ ecalVeto ] 0 : Hit 1: [-195.579, -75.0719, 30] + [ ecalVeto ] 0 : Hit 2: [-197.987, -79.2426, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-3.88031, 140.182, 29] + [ ecalVeto ] 0 : Hit 1: [-1.47238, 136.011, 28] + [ ecalVeto ] 0 : Hit 2: [-3.88031, 131.841, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 123.499, 26] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 119.329, 25] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 106.817, 24] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 102.646, 23] + [ ecalVeto ] 0 : Hit 2: [-8.69618, 98.4754, 22] + [ ecalVeto ] 0 : Hit 3: [-11.1041, 94.3048, 21] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 91.7545, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 79.2426, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 75.0719, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 70.9012, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 66.7306, 16] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 62.5599, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3783.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 869 Brem photon produced 94 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5480.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 870 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 79.2426, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 75.0719, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7572.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 871 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5712.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 872 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, 85.9634, 14] + [ ecalVeto ] 0 : Hit 1: [52.039, 81.7928, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5885.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 873 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2245.79; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 874 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, -4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [48.1586, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 2: [45.7507, 4.17066, 19] + [ ecalVeto ] 0 : Hit 3: [48.1586, 8.34132, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -4.17066, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, 4.17066, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, 8.34132, 17] + [ ecalVeto ] 0 : Hit 4: [40.9348, 4.17066, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2707.94; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 875 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, -119.329, 22] + [ ecalVeto ] 0 : Hit 1: [8.69618, -115.158, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6235.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 876 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-212.435, 54.2186, 25] + [ ecalVeto ] 0 : Hit 1: [-210.027, 58.3892, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-197.987, 54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [-195.579, 50.0479, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-190.763, 50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-188.356, 45.8773, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-176.316, 41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-173.908, 37.5359, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [48.1586, -25.024, 14] + [ ecalVeto ] 0 : Hit 1: [45.7507, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [48.1586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [45.7507, -20.8533, 11] + [ ecalVeto ] 0 : Hit 4: [48.1586, -25.024, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 123.499, 5] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 119.329, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3349.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 877 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -83.4132, 25] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -87.5839, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-82.4065, -37.5359, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4285.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 878 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 98.4754, 15] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 102.646, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3842.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 879 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -58.3892, 12] + [ ecalVeto ] 0 : Hit 2: [4.81586, -58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [4.81586, -58.3892, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -54.2186, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -54.2186, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, -58.3892, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 6: [4.81586, -25.024, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4718.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 880 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, -106.817, 24] + [ ecalVeto ] 0 : Hit 1: [44.8152, -102.646, 23] + [ ecalVeto ] 0 : Hit 2: [47.2231, -98.4754, 22] + [ ecalVeto ] 0 : Hit 3: [44.8152, -94.3048, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [32.7755, -123.499, 24] + [ ecalVeto ] 0 : Hit 1: [30.3676, -119.329, 23] + [ ecalVeto ] 0 : Hit 2: [32.7755, -115.158, 22] + [ ecalVeto ] 0 : Hit 3: [30.3676, -110.987, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -83.4132, 17] + [ ecalVeto ] 0 : Hit 1: [26.4873, -79.2426, 16] + [ ecalVeto ] 0 : Hit 2: [24.0793, -75.0719, 15] + [ ecalVeto ] 0 : Hit 3: [26.4873, -70.9012, 14] + [ ecalVeto ] 0 : Hit 4: [24.0793, -66.7306, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -45.8773, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, -41.7066, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 8: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 9: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 10: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3662.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 881 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 90.1341, 7] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 94.3048, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5445.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 882 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 165.206, 25] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 161.035, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, 25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, 29.1946, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 25.024, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2899.16; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 883 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-160.396, -119.329, 30] + [ ecalVeto ] 0 : Hit 1: [-162.804, -115.158, 29] + [ ecalVeto ] 0 : Hit 2: [-160.396, -110.987, 28] + [ ecalVeto ] 0 : Hit 3: [-162.804, -106.817, 27] + [ ecalVeto ] 0 : Hit 4: [-160.396, -102.646, 26] + [ ecalVeto ] 0 : Hit 5: [-162.804, -98.4754, 25] + [ ecalVeto ] 0 : Hit 6: [-160.396, -94.3048, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [166.684, 75.0719, 27] + [ ecalVeto ] 0 : Hit 1: [169.092, 70.9012, 26] + [ ecalVeto ] 0 : Hit 2: [169.092, 70.9012, 24] + [ ecalVeto ] 0 : Hit 3: [173.908, 70.9012, 25] + [ ecalVeto ] 0 : Hit 4: [173.908, 70.9012, 23] + [ ecalVeto ] 0 : Hit 5: [176.316, 75.0719, 22] + [ ecalVeto ] 0 : Hit 6: [173.908, 70.9012, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [15.92, 110.987, 25] + [ ecalVeto ] 0 : Hit 1: [18.3279, 106.817, 24] + [ ecalVeto ] 0 : Hit 2: [15.92, 102.646, 23] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-117.053, -136.011, 24] + [ ecalVeto ] 0 : Hit 1: [-119.461, -131.841, 23] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-153.172, -90.1341, 22] + [ ecalVeto ] 0 : Hit 1: [-153.172, -90.1341, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 91.7545, 21] + [ ecalVeto ] 0 : Hit 1: [12.0397, 87.5839, 20] + [ ecalVeto ] 0 : Hit 2: [9.63173, 83.4132, 19] + [ ecalVeto ] 0 : Hit 3: [12.0397, 79.2426, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -41.7066, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3369.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 884 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, 81.7928, 14] + [ ecalVeto ] 0 : Hit 1: [88.1579, 77.6221, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5090.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 885 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1565.95; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 886 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 115.158, 23] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 119.329, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 110.987, 21] + [ ecalVeto ] 0 : Hit 1: [-52.039, 106.817, 20] + [ ecalVeto ] 0 : Hit 2: [-54.4469, 102.646, 19] + [ ecalVeto ] 0 : Hit 3: [-52.039, 98.4754, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 66.7306, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, 75.0719, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 70.9012, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 124 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6004.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 887 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 6: [4.81586, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5566.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 888 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, -94.3048, 10] + [ ecalVeto ] 0 : Hit 1: [37.5914, -90.1341, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5077.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 889 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [15.92, -202.742, 29] + [ ecalVeto ] 0 : Hit 1: [18.3279, -198.571, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2200.71; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 890 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 50.0479, 32] + [ ecalVeto ] 0 : Hit 1: [48.1586, 50.0479, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 33.3653, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, 29.1946, 21] + [ ecalVeto ] 0 : Hit 2: [33.711, 33.3653, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2147.36; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 891 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, 102.646, 26] + [ ecalVeto ] 0 : Hit 1: [37.5914, 98.4754, 25] + [ ecalVeto ] 0 : Hit 2: [39.9993, 94.3048, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 66.7306, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, 62.5599, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4888.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 892 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, -115.158, 28] + [ ecalVeto ] 0 : Hit 1: [30.3676, -110.987, 27] + [ ecalVeto ] 0 : Hit 2: [32.7755, -106.817, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -83.4132, 21] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -79.2426, 20] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -75.0719, 19] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -70.9012, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -62.5599, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, -58.3892, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, -54.2186, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, -50.0479, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 15] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -50.0479, 14] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -45.8773, 13] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -41.7066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2322.01; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 893 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 83.4132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 79.2426, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9751.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 894 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-138.725, -123.499, 26] + [ ecalVeto ] 0 : Hit 1: [-141.132, -119.329, 25] + [ ecalVeto ] 0 : Hit 2: [-138.725, -115.158, 24] + [ ecalVeto ] 0 : Hit 3: [-141.132, -110.987, 23] + [ ecalVeto ] 0 : Hit 4: [-138.725, -106.817, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 24] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 23] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 22] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 21] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 20] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 19] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -29.1946, 18] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -25.024, 17] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -20.8533, 16] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -16.6826, 15] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -12.512, 14] + [ ecalVeto ] 0 : Hit 12: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 13: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 14: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 15: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 16: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 17: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 18: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 19: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-133.909, -106.817, 21] + [ ecalVeto ] 0 : Hit 1: [-131.501, -102.646, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-126.685, -94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-124.277, -90.1341, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-112.237, -77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-109.829, -73.4515, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-104.078, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, -54.2186, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 10: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5041.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 895 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [141.132, 102.646, 30] + [ ecalVeto ] 0 : Hit 1: [138.725, 98.4754, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 20] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 19] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4584.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 896 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, 123.499, 17] + [ ecalVeto ] 0 : Hit 1: [-160.396, 119.329, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-141.132, 110.987, 15] + [ ecalVeto ] 0 : Hit 1: [-138.725, 106.817, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 85.9634, 11] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 81.7928, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 73.4515, 9] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 69.2808, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 58.3892, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 54.2186, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2910.58; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 897 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -29.1946, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6856.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 898 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 227.766, 23] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 223.595, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -90.1341, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5275.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 899 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, -115.158, 20] + [ ecalVeto ] 0 : Hit 1: [73.7103, -110.987, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5242.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 900 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 6: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 7: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 54.2186, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6990.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 901 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 77.6221, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 16] + [ ecalVeto ] 0 : Hit 2: [-68.8945, 77.6221, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 75.0719, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 79.2426, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 83.4132, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 79.2426, 12] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 75.0719, 11] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 70.9012, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 90.1341, 15] + [ ecalVeto ] 0 : Hit 1: [-15.92, 94.3048, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 50.0479, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5643.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 902 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 16] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -37.5359, 15] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -41.7066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -25.024, 11] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -20.8533, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 1] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5784.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 903 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 85.9634, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 22] + [ ecalVeto ] 0 : Hit 2: [-76.1183, 73.4515, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-66.4865, 73.4515, 20] + [ ecalVeto ] 0 : Hit 1: [-68.8945, 69.2808, 19] + [ ecalVeto ] 0 : Hit 2: [-66.4865, 73.4515, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 65.1101, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 69.2808, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 66.7306, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 62.5599, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, 62.5599, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 58.3892, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 54.2186, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 50.0479, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 66.7306, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5593.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 904 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -156.865, 23] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -161.035, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, -41.7066, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 66.7306, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 62.5599, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 79.2426, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 75.0719, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4800.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 905 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 12.512, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 16.6826, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5432.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 906 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.039, -81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [54.4469, -85.9634, 22] + [ ecalVeto ] 0 : Hit 2: [52.039, -81.7928, 21] + [ ecalVeto ] 0 : Hit 3: [54.4469, -77.6221, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, -62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [33.711, -58.3892, 14] + [ ecalVeto ] 0 : Hit 2: [31.3031, -62.5599, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -54.2186, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -50.0479, 9] + [ ecalVeto ] 0 : Hit 4: [26.4873, -45.8773, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [19.2635, -41.7066, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6722.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 907 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 54.2186, 15] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 50.0479, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -123.499, 10] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -119.329, 9] + [ ecalVeto ] 0 : Hit 2: [-23.1438, -115.158, 8] + [ ecalVeto ] 0 : Hit 3: [-25.5517, -110.987, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4042.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 908 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [69.83, -20.8533, 20] + [ ecalVeto ] 0 : Hit 1: [67.4221, -16.6826, 19] + [ ecalVeto ] 0 : Hit 2: [69.83, -12.512, 18] + [ ecalVeto ] 0 : Hit 3: [67.4221, -8.34132, 17] + [ ecalVeto ] 0 : Hit 4: [67.4221, -8.34132, 15] + [ ecalVeto ] 0 : Hit 5: [69.83, -12.512, 14] + [ ecalVeto ] 0 : Hit 6: [62.6062, -8.34132, 16] + [ ecalVeto ] 0 : Hit 7: [62.6062, -8.34132, 14] + [ ecalVeto ] 0 : Hit 8: [60.1983, -4.17066, 13] + [ ecalVeto ] 0 : Hit 9: [62.6062, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 10: [60.1983, -4.17066, 11] + [ ecalVeto ] 0 : Hit 11: [62.6062, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 12: [60.1983, 4.17066, 9] + [ ecalVeto ] 0 : Hit 13: [62.6062, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-130.565, 54.2186, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, 62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [-123.341, 66.7306, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-112.237, 69.2808, 11] + [ ecalVeto ] 0 : Hit 1: [-109.829, 73.4515, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4661.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 909 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-1.47238, -110.987, 14] + [ ecalVeto ] 0 : Hit 1: [-3.88031, -106.817, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -73.4515, 11] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -69.2808, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -90.1341, 11] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -94.3048, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -37.5359, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -58.3892, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-33.711, -33.3653, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [140.197, 62.5599, 2] + [ ecalVeto ] 0 : Hit 1: [137.789, 58.3892, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4229.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 910 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3892.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 911 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4772.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 912 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-155.58, 127.67, 29] + [ ecalVeto ] 0 : Hit 1: [-153.172, 131.841, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, 77.6221, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, 73.4515, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 29.1946, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 8.34132, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5530.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 913 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, -45.8773, 22] + [ ecalVeto ] 0 : Hit 2: [-118.525, -41.7066, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-176.316, 25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-173.908, 29.1946, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-183.54, -20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [-181.132, -16.6826, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-125.749, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, -33.3653, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-166.684, 50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [-169.092, 54.2186, 19] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-118.525, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-116.118, -4.17066, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, 8.34132, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 70.9012, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 75.0719, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5966.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 914 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 66.7306, 24] + [ ecalVeto ] 0 : Hit 1: [31.3031, 62.5599, 23] + [ ecalVeto ] 0 : Hit 2: [33.711, 58.3892, 22] + [ ecalVeto ] 0 : Hit 3: [31.3031, 54.2186, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 33.3653, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3593.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 915 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3699.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 916 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-197.987, 12.512, 33] + [ ecalVeto ] 0 : Hit 1: [-195.579, 16.6826, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-183.54, 12.512, 31] + [ ecalVeto ] 0 : Hit 1: [-181.132, 8.34132, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-161.868, 8.34132, 29] + [ ecalVeto ] 0 : Hit 1: [-159.46, 4.17066, 28] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -8.34132, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, -37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [31.3031, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [33.711, -33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [31.3031, -29.1946, 7] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, -37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, -33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [40.9348, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [40.9348, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [38.5269, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [40.9348, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [38.5269, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6679.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 917 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [47.2231, -73.4515, 20] + [ ecalVeto ] 0 : Hit 1: [45.7507, -70.9012, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3439.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 918 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [161.868, -58.3892, 28] + [ ecalVeto ] 0 : Hit 1: [159.46, -54.2186, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-183.54, 87.5839, 27] + [ ecalVeto ] 0 : Hit 1: [-181.132, 83.4132, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [140.197, -45.8773, 24] + [ ecalVeto ] 0 : Hit 1: [137.789, -41.7066, 23] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-147.421, 75.0719, 23] + [ ecalVeto ] 0 : Hit 1: [-145.013, 70.9012, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-132.973, 66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, 70.9012, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-118.525, 66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 62.5599, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-104.078, 58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 54.2186, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 14] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 37.5359, 13] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 33.3653, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 45.8773, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 10] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4583.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 919 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -119.329, 20] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -115.158, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3951.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 920 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 123.499, 27] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 127.67, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 131.841, 26] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 127.67, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 81.7928, 25] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 85.9634, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-154.644, 12.512, 23] + [ ecalVeto ] 0 : Hit 1: [-152.237, 16.6826, 22] + [ ecalVeto ] 0 : Hit 2: [-154.644, 20.8533, 21] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 70.9012, 22] + [ ecalVeto ] 0 : Hit 1: [-33.711, 66.7306, 21] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 62.5599, 20] + [ ecalVeto ] 0 : Hit 3: [-33.711, 58.3892, 19] + [ ecalVeto ] 0 : Hit 4: [-31.3031, 62.5599, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-147.421, 25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-145.013, 20.8533, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 4.17066, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [31.3031, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [33.711, -8.34132, 4] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4459.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 921 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, 102.646, 28] + [ ecalVeto ] 0 : Hit 1: [23.1438, 98.4754, 27] + [ ecalVeto ] 0 : Hit 2: [25.5517, 94.3048, 26] + [ ecalVeto ] 0 : Hit 3: [25.5517, 94.3048, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 66.7306, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, 62.5599, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, 66.7306, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, 62.5599, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 54.2186, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2866.23; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 922 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 8: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Hit 9: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Hit 10: [9.63173, 33.3653, 1] + [ ecalVeto ] 0 : Hit 11: [12.0397, 37.5359, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5581.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 923 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [80.9341, -73.4515, 23] + [ ecalVeto ] 0 : Hit 1: [83.3421, -69.2808, 22] + [ ecalVeto ] 0 : Hit 2: [80.9341, -65.1101, 21] + [ ecalVeto ] 0 : Hit 3: [83.3421, -60.9395, 20] + [ ecalVeto ] 0 : Hit 4: [80.9341, -56.7688, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [76.1183, -56.7688, 18] + [ ecalVeto ] 0 : Hit 1: [74.6459, -54.2186, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 8: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 9: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Hit 10: [16.8555, -29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2048.23; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 924 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9535.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 925 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, -81.7928, 24] + [ ecalVeto ] 0 : Hit 1: [32.7755, -81.7928, 22] + [ ecalVeto ] 0 : Hit 2: [31.3031, -79.2426, 21] + [ ecalVeto ] 0 : Hit 3: [33.711, -75.0719, 20] + [ ecalVeto ] 0 : Hit 4: [31.3031, -70.9012, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 70.9012, 18] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 70.9012, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 66.7306, 14] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 62.5599, 13] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 58.3892, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 50.0479, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 45.8773, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7206.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 926 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2943.54; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 927 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [38.5269, 50.0479, 17] + [ ecalVeto ] 0 : Hit 2: [33.711, 50.0479, 18] + [ ecalVeto ] 0 : Hit 3: [33.711, 50.0479, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [97.7897, -69.2808, 10] + [ ecalVeto ] 0 : Hit 1: [95.3817, -65.1101, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Hit 10: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 1] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3637.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 928 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, 37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [33.711, 33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6709.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 929 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 929 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3799.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 930 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9880.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 931 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 15 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1322.42; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 932 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3877.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 933 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, -161.035, 32] + [ ecalVeto ] 0 : Hit 1: [68.8945, -161.035, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [76.1183, -181.889, 30] + [ ecalVeto ] 0 : Hit 1: [76.1183, -181.889, 28] + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1441.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 934 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [104.078, -8.34132, 28] + [ ecalVeto ] 0 : Hit 1: [101.67, -4.17066, 27] + [ ecalVeto ] 0 : Hit 2: [104.078, -2.66454e-15, 26] + [ ecalVeto ] 0 : Hit 3: [101.67, 4.17066, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [125.749, 29.1946, 26] + [ ecalVeto ] 0 : Hit 1: [125.749, 29.1946, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-166.684, -25.024, 24] + [ ecalVeto ] 0 : Hit 1: [-169.092, -20.8533, 23] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2508.93; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 935 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2144.98; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 936 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 936 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 9: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5482.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 937 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [44.8152, 77.6221, 31] + [ ecalVeto ] 0 : Hit 1: [44.8152, 77.6221, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2465.92; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 938 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 81.7928, 11] + [ ecalVeto ] 0 : Hit 1: [-102.606, 77.6221, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 77.6221, 4] + [ ecalVeto ] 0 : Hit 1: [-61.6707, 81.7928, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8585.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 939 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4885.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 940 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 90.1341, 24] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 85.9634, 23] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 83.4132, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [69.83, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [67.4221, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [69.83, 45.8773, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -115.158, 1] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -119.329, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5532.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 941 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 62.5599, 15] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 58.3892, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -83.4132, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, -79.2426, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, -75.0719, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, -70.9012, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, -66.7306, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, -62.5599, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, -58.3892, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.039, 73.4515, 10] + [ ecalVeto ] 0 : Hit 1: [-54.4469, 69.2808, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 114 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4573.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 942 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 54.2186, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-33.711, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4363.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 943 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4602.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 944 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 2] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, -37.5359, 1] + [ ecalVeto ] 0 : Hit 7: [4.81586, -41.7066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5409.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 945 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -25.024, 29] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 28] + [ ecalVeto ] 0 : Hit 2: [38.5269, -25.024, 27] + [ ecalVeto ] 0 : Hit 3: [40.9348, -20.8533, 26] + [ ecalVeto ] 0 : Hit 4: [38.5269, -16.6826, 25] + [ ecalVeto ] 0 : Hit 5: [40.9348, -12.512, 24] + [ ecalVeto ] 0 : Hit 6: [38.5269, -8.34132, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -8.34132, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 21] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 15] + [ ecalVeto ] 0 : Hit 4: [26.4873, 12.512, 14] + [ ecalVeto ] 0 : Hit 5: [24.0793, 16.6826, 13] + [ ecalVeto ] 0 : Hit 6: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Hit 7: [19.2635, 16.6826, 12] + [ ecalVeto ] 0 : Hit 8: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 9: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 10: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 11: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 12: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 94.3048, 9] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 90.1341, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 17 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1265.56; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 946 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 16 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3068.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 947 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [96.8541, -45.8773, 24] + [ ecalVeto ] 0 : Hit 1: [96.8541, -45.8773, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [38.5269, 41.7066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5574.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 948 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 66.7306, 25] + [ ecalVeto ] 0 : Hit 1: [26.4873, 62.5599, 24] + [ ecalVeto ] 0 : Hit 2: [24.0793, 58.3892, 23] + [ ecalVeto ] 0 : Hit 3: [26.4873, 54.2186, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, -66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [-159.46, -62.5599, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, 41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [26.4873, 37.5359, 20] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 19] + [ ecalVeto ] 0 : Hit 3: [26.4873, 29.1946, 18] + [ ecalVeto ] 0 : Hit 4: [24.0793, 25.024, 17] + [ ecalVeto ] 0 : Hit 5: [26.4873, 20.8533, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-147.421, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-145.013, -54.2186, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-132.973, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-130.565, -45.8773, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-118.525, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-116.118, -29.1946, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, -4.17066, 12] + [ ecalVeto ] 0 : Hit 4: [24.0793, -8.34132, 11] + [ ecalVeto ] 0 : Hit 5: [26.4873, -12.512, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [48.1586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [45.7507, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [48.1586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [45.7507, -37.5359, 3] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3991.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 949 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 949 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-52.039, -90.1341, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -81.7928, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -81.7928, 11] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -85.9634, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -79.2426, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -83.4132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6952.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 950 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2255.72; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 951 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 7: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 8: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Hit 9: [12.0397, -12.512, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 50.0479, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 45.8773, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 54.2186, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [16.8555, -4.17066, 3] + [ ecalVeto ] 0 : Hit 7: [19.2635, -8.34132, 2] + [ ecalVeto ] 0 : Hit 8: [16.8555, -12.512, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 54.2186, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5822.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 952 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -79.2426, 25] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 24] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -70.9012, 23] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -66.7306, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 20] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -58.3892, 19] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -54.2186, 18] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -50.0479, 17] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -45.8773, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4111.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 953 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6802.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 954 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6139.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 955 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 25] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 24] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 58.3892, 23] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 54.2186, 22] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 50.0479, 21] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 45.8773, 20] + [ ecalVeto ] 0 : Hit 6: [-19.2635, 41.7066, 19] + [ ecalVeto ] 0 : Hit 7: [-16.8555, 45.8773, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4567.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 956 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-87.2224, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-89.6303, 8.34132, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-82.4065, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [-81.8697, 16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4991; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 957 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -73.4515, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 37.5359, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5895.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 958 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3236.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 959 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [-33.711, -66.7306, 13] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -62.5599, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4406.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 960 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, -65.1101, 16] + [ ecalVeto ] 0 : Hit 1: [88.1579, -60.9395, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6684.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 961 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3719.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 962 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5309.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 963 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, -115.158, 21] + [ ecalVeto ] 0 : Hit 1: [-131.501, -110.987, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, -98.4754, 19] + [ ecalVeto ] 0 : Hit 1: [-117.053, -94.3048, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [74.6459, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [77.0538, 25.024, 18] + [ ecalVeto ] 0 : Hit 2: [74.6459, 29.1946, 17] + [ ecalVeto ] 0 : Hit 3: [77.0538, 33.3653, 16] + [ ecalVeto ] 0 : Hit 4: [74.6459, 37.5359, 15] + [ ecalVeto ] 0 : Hit 5: [77.0538, 41.7066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-197.987, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-195.579, -58.3892, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3626.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 964 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2313.7; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 965 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -83.4132, 20] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -79.2426, 19] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -75.0719, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [90.5659, -90.1341, 18] + [ ecalVeto ] 0 : Hit 1: [88.1579, -85.9634, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -119.329, 16] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -115.158, 15] + [ ecalVeto ] 0 : Hit 2: [-59.2627, -110.987, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -98.4754, 15] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -102.646, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -75.0719, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5674.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 966 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4371.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 967 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3055.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 968 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 3] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 2] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 58.3892, 1] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 62.5599, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4558.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 969 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [40.9348, 4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [38.5269, -2.66454e-15, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -60.9395, 11] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -65.1101, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5926.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 970 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 13] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -20.8533, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7975.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 971 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-101.67, 45.8773, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -60.9395, 7] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -58.3892, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 8.34132, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5219.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 972 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 62.5599, 21] + [ ecalVeto ] 0 : Hit 1: [33.711, 58.3892, 20] + [ ecalVeto ] 0 : Hit 2: [31.3031, 54.2186, 19] + [ ecalVeto ] 0 : Hit 3: [33.711, 58.3892, 18] + [ ecalVeto ] 0 : Hit 4: [31.3031, 54.2186, 17] + [ ecalVeto ] 0 : Hit 5: [26.4873, 54.2186, 18] + [ ecalVeto ] 0 : Hit 6: [24.0793, 50.0479, 17] + [ ecalVeto ] 0 : Hit 7: [26.4873, 45.8773, 16] + [ ecalVeto ] 0 : Hit 8: [24.0793, 50.0479, 15] + [ ecalVeto ] 0 : Hit 9: [26.4873, 54.2186, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 50.0479, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 45.8773, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, 41.7066, 12] + [ ecalVeto ] 0 : Hit 5: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5049.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 973 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 20] + [ ecalVeto ] 0 : Hit 1: [33.711, 16.6826, 18] + [ ecalVeto ] 0 : Hit 2: [31.3031, 12.512, 17] + [ ecalVeto ] 0 : Hit 3: [33.711, 8.34132, 16] + [ ecalVeto ] 0 : Hit 4: [31.3031, 4.17066, 15] + [ ecalVeto ] 0 : Hit 5: [33.711, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 6: [31.3031, 4.17066, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -8.34132, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2414.25; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 974 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-219.659, -41.7066, 27] + [ ecalVeto ] 0 : Hit 1: [-217.251, -37.5359, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, -25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-159.46, -29.1946, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-147.421, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-145.013, -20.8533, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, -8.34132, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -8.34132, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4301.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 975 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 8: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2556.82; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 976 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 77.6221, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 83.4132, 12] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 79.2426, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8361.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 977 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 156.865, 25] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 161.035, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 115.158, 23] + [ ecalVeto ] 0 : Hit 1: [-15.92, 119.329, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4305.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 978 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 75.0719, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 79.2426, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8620.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 979 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, 85.9634, 24] + [ ecalVeto ] 0 : Hit 1: [95.3817, 81.7928, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3498.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 980 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 21] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -8.34132, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5480.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 981 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5452.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 982 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 8: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 9: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Hit 10: [12.0397, -12.512, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2699.35; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 983 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-197.987, -54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-195.579, -50.0479, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 37.5359, 20] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 19] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 37.5359, 18] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 37.5359, 19] + [ ecalVeto ] 0 : Hit 4: [-24.0793, 33.3653, 18] + [ ecalVeto ] 0 : Hit 5: [-26.4873, 29.1946, 17] + [ ecalVeto ] 0 : Hit 6: [-24.0793, 25.024, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-176.316, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-173.908, -54.2186, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4656.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 984 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4674.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 985 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-108.894, 8.34132, 2] + [ ecalVeto ] 0 : Hit 1: [-111.302, 4.17066, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-140.197, 4.17066, 1] + [ ecalVeto ] 0 : Hit 1: [-137.789, -2.36672e-14, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4724.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 986 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -56.7688, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -60.9395, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 16] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 15] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 4.17066, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 1] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2378.37; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 987 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6666.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 988 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 20] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 58.3892, 19] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 54.2186, 18] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 50.0479, 17] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 45.8773, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3232.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 989 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -94.3048, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [44.8152, -102.646, 21] + [ ecalVeto ] 0 : Hit 1: [47.2231, -98.4754, 20] + [ ecalVeto ] 0 : Hit 2: [44.8152, -94.3048, 19] + [ ecalVeto ] 0 : Hit 3: [47.2231, -90.1341, 18] + [ ecalVeto ] 0 : Hit 4: [44.8152, -85.9634, 17] + [ ecalVeto ] 0 : Hit 5: [47.2231, -81.7928, 16] + [ ecalVeto ] 0 : Hit 6: [44.8152, -77.6221, 15] + [ ecalVeto ] 0 : Hit 7: [47.2231, -73.4515, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4307.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 990 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7550.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 991 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [48.1586, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5458.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 992 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [116.118, 12.512, 33] + [ ecalVeto ] 0 : Hit 1: [116.118, 12.512, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 144.353, 29] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 140.182, 28] + [ ecalVeto ] 0 : Hit 2: [-97.7897, 136.011, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [52.9745, -41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [52.9745, -41.7066, 23] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2451.04; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 993 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 16] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 15] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 14] + [ ecalVeto ] 0 : Hit 4: [16.8555, -20.8533, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7502.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 994 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [15.92, -102.646, 15] + [ ecalVeto ] 0 : Hit 1: [18.3279, -106.817, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4705.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 995 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4027.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 996 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -98.4754, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, -94.3048, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3226.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 997 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, 115.158, 13] + [ ecalVeto ] 0 : Hit 1: [11.1041, 110.987, 12] + [ ecalVeto ] 0 : Hit 2: [8.69618, 106.817, 11] + [ ecalVeto ] 0 : Hit 3: [11.1041, 102.646, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 83.4132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 79.2426, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4699.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 998 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 117 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3991.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 999 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [119.461, -165.206, 28] + [ ecalVeto ] 0 : Hit 1: [117.053, -161.035, 27] + [ ecalVeto ] 0 : Hit 2: [119.461, -156.865, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-15.92, 94.3048, 26] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 90.1341, 25] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 87.5839, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 62.5599, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 58.3892, 16] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 54.2186, 15] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 50.0479, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 54.2186, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 2: [31.3031, 4.17066, 1] + [ ecalVeto ] 0 : Hit 3: [33.711, 8.34132, 0] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 3] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3880.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1000 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -75.0719, 19] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -70.9012, 18] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -66.7306, 17] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -62.5599, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -98.4754, 15] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -94.3048, 14] + [ ecalVeto ] 0 : Hit 2: [-32.7755, -90.1341, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5465.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1001 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5930.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1002 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [147.421, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [145.013, -37.5359, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1620.88; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1003 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 20] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 33.3653, 19] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 29.1946, 18] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 33.3653, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3147.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1004 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 2] + [ ecalVeto ] 0 : Hit 1: [26.4873, -37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3701.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1005 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3139.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1006 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-123.341, 33.3653, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-130.565, 37.5359, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-94.4462, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [-96.8541, 12.512, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-116.118, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-118.525, 25.024, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 13] + [ ecalVeto ] 0 : Hit 1: [-101.67, -4.17066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4085.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1007 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [23.1438, 165.206, 15] + [ ecalVeto ] 0 : Hit 1: [25.5517, 161.035, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 8: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5788.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1008 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-95.3817, -65.1101, 10] + [ ecalVeto ] 0 : Hit 1: [-97.7897, -69.2808, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 85.9634, 5] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 90.1341, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5758.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1009 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 13 + [ ecalVeto ] 0 : Beginning track merging using 13 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -98.4754, 29] + [ ecalVeto ] 0 : Hit 1: [-117.053, -94.3048, 28] + [ ecalVeto ] 0 : Hit 2: [-119.461, -98.4754, 27] + [ ecalVeto ] 0 : Hit 3: [-117.053, -94.3048, 26] + [ ecalVeto ] 0 : Hit 4: [-119.461, -90.1341, 25] + [ ecalVeto ] 0 : Hit 5: [-117.053, -85.9634, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, -85.9634, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, -81.7928, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, -73.4515, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, -69.2808, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -65.1101, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, 66.7306, 18] + [ ecalVeto ] 0 : Hit 1: [31.3031, 62.5599, 17] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -56.7688, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -52.5982, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -50.0479, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, 16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, 20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 6] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5095.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1010 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [95.3817, -81.7928, 31] + [ ecalVeto ] 0 : Hit 1: [97.7897, -77.6221, 30] + [ ecalVeto ] 0 : Hit 2: [95.3817, -81.7928, 29] + [ ecalVeto ] 0 : Hit 3: [97.7897, -77.6221, 28] + [ ecalVeto ] 0 : Hit 4: [95.3817, -81.7928, 27] + [ ecalVeto ] 0 : Hit 5: [97.7897, -85.9634, 26] + [ ecalVeto ] 0 : Hit 6: [95.3817, -81.7928, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 27] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 26] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -37.5359, 25] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -33.3653, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 20] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 19] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -4.17066, 18] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 4.17066, 16] + [ ecalVeto ] 0 : Hit 6: [-19.2635, 8.34132, 15] + [ ecalVeto ] 0 : Hit 7: [-16.8555, 12.512, 14] + [ ecalVeto ] 0 : Hit 8: [-19.2635, 8.34132, 13] + [ ecalVeto ] 0 : Hit 9: [-16.8555, 12.512, 12] + [ ecalVeto ] 0 : Hit 10: [-12.0397, 12.512, 13] + [ ecalVeto ] 0 : Hit 11: [-9.63173, 16.6826, 12] + [ ecalVeto ] 0 : Hit 12: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 13: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 14: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4673.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1011 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.039, 90.1341, 25] + [ ecalVeto ] 0 : Hit 1: [54.4469, 85.9634, 24] + [ ecalVeto ] 0 : Hit 2: [52.039, 81.7928, 23] + [ ecalVeto ] 0 : Hit 3: [54.4469, 85.9634, 22] + [ ecalVeto ] 0 : Hit 4: [52.039, 81.7928, 21] + [ ecalVeto ] 0 : Hit 5: [54.4469, 77.6221, 20] + [ ecalVeto ] 0 : Hit 6: [52.039, 73.4515, 19] + [ ecalVeto ] 0 : Hit 7: [54.4469, 77.6221, 18] + [ ecalVeto ] 0 : Hit 8: [52.039, 73.4515, 17] + [ ecalVeto ] 0 : Hit 9: [54.4469, 69.2808, 16] + [ ecalVeto ] 0 : Hit 10: [52.9745, 66.7306, 15] + [ ecalVeto ] 0 : Hit 11: [52.9745, 66.7306, 13] + [ ecalVeto ] 0 : Hit 12: [48.1586, 66.7306, 14] + [ ecalVeto ] 0 : Hit 13: [48.1586, 66.7306, 12] + [ ecalVeto ] 0 : Hit 14: [45.7507, 62.5599, 11] + [ ecalVeto ] 0 : Hit 15: [48.1586, 58.3892, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 3] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 2] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 1] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2440.61; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1012 Brem photon produced 64 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5328.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1013 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -102.646, 23] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -106.817, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -90.1341, 19] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -87.5839, 18] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -83.4132, 17] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -79.2426, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -62.5599, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -58.3892, 12] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -54.2186, 11] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -50.0479, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1839.71; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1014 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3964.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1015 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3379.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1016 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, 81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, 77.6221, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4410.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1017 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4265.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1018 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 54.2186, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [38.5269, -16.6826, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -12.512, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [26.4873, -20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Hit 6: [26.4873, -29.1946, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [31.3031, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [33.711, -16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 136 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7506.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1019 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 102.646, 7] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 106.817, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5008.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1020 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 90.1341, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [8.69618, -165.206, 11] + [ ecalVeto ] 0 : Hit 1: [11.1041, -169.377, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -98.4754, 5] + [ ecalVeto ] 0 : Hit 1: [-15.92, -102.646, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -94.3048, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -91.7545, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5793.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1021 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 75.0719, 23] + [ ecalVeto ] 0 : Hit 1: [40.9348, 70.9012, 22] + [ ecalVeto ] 0 : Hit 2: [38.5269, 66.7306, 21] + [ ecalVeto ] 0 : Hit 3: [40.9348, 62.5599, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-173.908, -62.5599, 2] + [ ecalVeto ] 0 : Hit 1: [-176.316, -58.3892, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4126.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1022 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-116.118, -12.512, 24] + [ ecalVeto ] 0 : Hit 1: [-118.525, -16.6826, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-130.565, -37.5359, 24] + [ ecalVeto ] 0 : Hit 1: [-132.973, -33.3653, 23] + [ ecalVeto ] 0 : Hit 2: [-130.565, -29.1946, 24] + [ ecalVeto ] 0 : Hit 3: [-132.973, -25.024, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, -37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-137.789, -41.7066, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4757.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1023 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -12.512, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4762.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1024 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-145.013, 4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [-147.421, 8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [-145.013, 4.17066, 14] + [ ecalVeto ] 0 : Hit 3: [-147.421, 8.34132, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, -62.5599, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5440.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1025 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -54.2186, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -12.512, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7885.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1026 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4020.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1027 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3363.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1028 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -156.865, 25] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -152.694, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-8.69618, -98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [-11.1041, -94.3048, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [197.987, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [195.579, -8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [197.987, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2695.57; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1029 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 13 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3233.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1030 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [19.2635, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [16.8555, -4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 8: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 41.7066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6571.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1031 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [23.1438, 165.206, 31] + [ ecalVeto ] 0 : Hit 1: [25.5517, 169.377, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [44.8152, -136.011, 29] + [ ecalVeto ] 0 : Hit 1: [47.2231, -140.182, 28] + [ ecalVeto ] 0 : Hit 2: [44.8152, -136.011, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [18.3279, 140.182, 26] + [ ecalVeto ] 0 : Hit 1: [15.92, 136.011, 25] + [ ecalVeto ] 0 : Hit 2: [18.3279, 131.841, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [15.92, 119.329, 23] + [ ecalVeto ] 0 : Hit 1: [18.3279, 115.158, 22] + [ ecalVeto ] 0 : Hit 2: [15.92, 110.987, 21] + [ ecalVeto ] 0 : Hit 3: [18.3279, 106.817, 20] + [ ecalVeto ] 0 : Hit 4: [15.92, 102.646, 19] + [ ecalVeto ] 0 : Hit 5: [18.3279, 98.4754, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4473.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1032 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7776.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1033 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 62.5599, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 54.2186, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 58.3892, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 54.2186, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4723.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1034 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1034 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -20.8533, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6325.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1035 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1035 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 9: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 14 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3623.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1036 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5841.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1037 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, 73.4515, 32] + [ ecalVeto ] 0 : Hit 1: [88.1579, 77.6221, 31] + [ ecalVeto ] 0 : Hit 2: [90.5659, 81.7928, 30] + [ ecalVeto ] 0 : Hit 3: [88.1579, 85.9634, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [154.644, -12.512, 32] + [ ecalVeto ] 0 : Hit 1: [152.237, -8.34132, 31] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [80.9341, 90.1341, 27] + [ ecalVeto ] 0 : Hit 1: [80.9341, 90.1341, 25] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [61.6707, 90.1341, 20] + [ ecalVeto ] 0 : Hit 1: [59.2627, 94.3048, 19] + [ ecalVeto ] 0 : Hit 2: [61.6707, 90.1341, 18] + [ ecalVeto ] 0 : Hit 3: [59.2627, 85.9634, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 20.8533, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 9: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Hit 10: [-9.63173, 16.6826, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3952.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1038 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -8.34132, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -62.5599, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -58.3892, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -20.8533, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -77.6221, 4] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -73.4515, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5464.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1039 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -102.646, 15] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -106.817, 14] + [ ecalVeto ] 0 : Hit 2: [-25.5517, -102.646, 13] + [ ecalVeto ] 0 : Hit 3: [-23.1438, -98.4754, 12] + [ ecalVeto ] 0 : Hit 4: [-25.5517, -94.3048, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -98.4754, 14] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -94.3048, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4867.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1040 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6291.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1041 Brem photon produced 95 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-123.341, 33.3653, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-101.67, 29.1946, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6696.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1042 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -66.7306, 26] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -62.5599, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -45.8773, 15] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -50.0479, 14] + [ ecalVeto ] 0 : Hit 3: [-26.4873, -45.8773, 13] + [ ecalVeto ] 0 : Hit 4: [-24.0793, -41.7066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3047.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1043 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [96.8541, 37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [94.4462, 33.3653, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [45.7507, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [48.1586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [45.7507, 4.17066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [33.711, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [31.3031, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [33.711, 8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [31.3031, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [33.711, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, 16.6826, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6726.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1044 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 4.17066, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11100.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1045 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3467.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1046 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 18] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 17] + [ ecalVeto ] 0 : Hit 3: [33.711, -8.34132, 16] + [ ecalVeto ] 0 : Hit 4: [31.3031, -4.17066, 15] + [ ecalVeto ] 0 : Hit 5: [33.711, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 6: [31.3031, 4.17066, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-87.2224, -12.512, 18] + [ ecalVeto ] 0 : Hit 1: [-89.6303, -8.34132, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -8.34132, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6103.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1047 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [31.3031, -62.5599, 17] + [ ecalVeto ] 0 : Hit 2: [33.711, -58.3892, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 66.7306, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 62.5599, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 9: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4858.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1048 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 1] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4456.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1049 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -127.67, 23] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -123.499, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -115.158, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -119.329, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -110.987, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -106.817, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 33.3653, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 2] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5570.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1050 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [24.0793, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [26.4873, -37.5359, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, -33.3653, 2] + [ ecalVeto ] 0 : Hit 4: [16.8555, -37.5359, 1] + [ ecalVeto ] 0 : Hit 5: [19.2635, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3222.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1051 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 16] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 15] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2742.75; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1052 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5610.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1053 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 181.889, 27] + [ ecalVeto ] 0 : Hit 1: [-15.92, 177.718, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 161.035, 25] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 156.865, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4704.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1054 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1054 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4769.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1055 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-102.606, -94.3048, 2] + [ ecalVeto ] 0 : Hit 1: [-105.013, -98.4754, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6289.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1056 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, -4.17066, 29] + [ ecalVeto ] 0 : Hit 1: [-152.237, -2.36672e-14, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, -4.17066, 27] + [ ecalVeto ] 0 : Hit 1: [-137.789, -2.36672e-14, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, -4.17066, 25] + [ ecalVeto ] 0 : Hit 1: [-123.341, -2.36672e-14, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, -4.17066, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -2.36672e-14, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -4.17066, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6848.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1057 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3569.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1058 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9641.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1059 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [19.2635, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [52.9745, -33.3653, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-87.2224, 37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-89.6303, 41.7066, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 33.3653, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7648.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1060 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 115 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6758.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1061 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5089.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1062 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 41.7066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6007.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1063 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7123.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1064 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5506.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1065 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4617.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1066 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5848.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1067 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-109.829, 73.4515, 26] + [ ecalVeto ] 0 : Hit 1: [-112.237, 77.6221, 25] + [ ecalVeto ] 0 : Hit 2: [-109.829, 73.4515, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, 73.4515, 23] + [ ecalVeto ] 0 : Hit 1: [-102.606, 69.2808, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 69.2808, 21] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 65.1101, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 79.2426, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 75.0719, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3464.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1068 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.039, -190.23, 21] + [ ecalVeto ] 0 : Hit 1: [54.4469, -186.059, 20] + [ ecalVeto ] 0 : Hit 2: [52.039, -181.889, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 14] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -45.8773, 13] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -41.7066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5308.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1069 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [19.2635, 50.0479, 16] + [ ecalVeto ] 0 : Hit 2: [16.8555, 45.8773, 15] + [ ecalVeto ] 0 : Hit 3: [19.2635, 41.7066, 14] + [ ecalVeto ] 0 : Hit 4: [16.8555, 37.5359, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -75.0719, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -70.9012, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9006.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1070 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 19 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1212.28; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1071 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, -119.329, 20] + [ ecalVeto ] 0 : Hit 1: [95.3817, -115.158, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Hit 9: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 10: [-9.63173, -41.7066, 2] + [ ecalVeto ] 0 : Hit 11: [-12.0397, -37.5359, 1] + [ ecalVeto ] 0 : Hit 12: [-9.63173, -33.3653, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5375.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1072 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [33.711, 8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6273.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1073 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 22 + [ ecalVeto ] 0 : Beginning track merging using 22 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 18 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 18] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -29.1946, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -4.17066, 13] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -8.34132, 12] + [ ecalVeto ] 0 : Hit 4: [-24.0793, -8.34132, 10] + [ ecalVeto ] 0 : Hit 5: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Hit 6: [-16.8555, -12.512, 10] + [ ecalVeto ] 0 : Hit 7: [-16.8555, -12.512, 8] + [ ecalVeto ] 0 : Hit 8: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -12.512, 12] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -8.34132, 11] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -4.17066, 10] + [ ecalVeto ] 0 : Hit 6: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 7: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 4] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 4] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 18 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5135.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1074 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, 144.353, 32] + [ ecalVeto ] 0 : Hit 1: [95.3817, 140.182, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [90.5659, 131.841, 30] + [ ecalVeto ] 0 : Hit 1: [88.1579, 127.67, 29] + [ ecalVeto ] 0 : Hit 2: [90.5659, 123.499, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [68.8945, 94.3048, 24] + [ ecalVeto ] 0 : Hit 1: [66.4865, 90.1341, 23] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 41.7066, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, 37.5359, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2032.7; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1075 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4045.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1076 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 12] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 50.0479, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 41.7066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6674.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1077 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 106.817, 27] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 110.987, 26] + [ ecalVeto ] 0 : Hit 2: [-76.1183, 115.158, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, 73.4515, 13] + [ ecalVeto ] 0 : Hit 1: [-102.606, 69.2808, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4540.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1078 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-137.789, -16.6826, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -62.5599, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -50.0479, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [19.2635, -58.3892, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5984.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1079 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5918.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1080 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3008.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1081 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 106.817, 13] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 102.646, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 90.1341, 11] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 85.9634, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [26.4873, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2595.4; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1082 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 16 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2246.55; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1083 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4400.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1084 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -12.512, 18] + [ ecalVeto ] 0 : Hit 1: [38.5269, -8.34132, 17] + [ ecalVeto ] 0 : Hit 2: [40.9348, -4.17066, 16] + [ ecalVeto ] 0 : Hit 3: [38.5269, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 4: [40.9348, 4.17066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5493.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1085 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [205.211, -50.0479, 32] + [ ecalVeto ] 0 : Hit 1: [202.803, -45.8773, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [154.644, -45.8773, 24] + [ ecalVeto ] 0 : Hit 1: [152.237, -41.7066, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [26.4873, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 5: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [19.2635, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 7: [16.8555, -4.17066, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4139.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1086 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5143.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1087 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-33.711, -8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3544.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1088 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [73.7103, 77.6221, 25] + [ ecalVeto ] 0 : Hit 1: [76.1183, 73.4515, 24] + [ ecalVeto ] 0 : Hit 2: [73.7103, 69.2808, 23] + [ ecalVeto ] 0 : Hit 3: [76.1183, 65.1101, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, -106.817, 19] + [ ecalVeto ] 0 : Hit 1: [-117.053, -102.646, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5881.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1089 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 54.2186, 5] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4142.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1090 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -60.9395, 21] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -56.7688, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [66.4865, 81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [68.8945, 85.9634, 16] + [ ecalVeto ] 0 : Hit 2: [66.4865, 90.1341, 15] + [ ecalVeto ] 0 : Hit 3: [68.8945, 94.3048, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -54.2186, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, -75.0719, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, -70.9012, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, -66.7306, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, -62.5599, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4801.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1091 Brem photon produced 90 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -45.8773, 17] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -50.0479, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -25.024, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6460.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1092 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6166.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1093 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 41.7066, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 41.7066, 3] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 45.8773, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4927.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1094 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3340.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1095 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-123.341, -50.0479, 26] + [ ecalVeto ] 0 : Hit 1: [-125.749, -54.2186, 25] + [ ecalVeto ] 0 : Hit 2: [-123.341, -50.0479, 24] + [ ecalVeto ] 0 : Hit 3: [-125.749, -45.8773, 23] + [ ecalVeto ] 0 : Hit 4: [-125.749, -45.8773, 21] + [ ecalVeto ] 0 : Hit 5: [-130.565, -45.8773, 22] + [ ecalVeto ] 0 : Hit 6: [-130.565, -45.8773, 20] + [ ecalVeto ] 0 : Hit 7: [-132.973, -41.7066, 19] + [ ecalVeto ] 0 : Hit 8: [-130.565, -37.5359, 18] + [ ecalVeto ] 0 : Hit 9: [-132.973, -33.3653, 17] + [ ecalVeto ] 0 : Hit 10: [-130.565, -29.1946, 16] + [ ecalVeto ] 0 : Hit 11: [-132.973, -25.024, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5299.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1096 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6372.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1097 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, 29.1946, 25] + [ ecalVeto ] 0 : Hit 1: [-166.684, 25.024, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-160.396, -94.3048, 24] + [ ecalVeto ] 0 : Hit 1: [-162.804, -98.4754, 23] + [ ecalVeto ] 0 : Hit 2: [-160.396, -102.646, 22] + [ ecalVeto ] 0 : Hit 3: [-162.804, -98.4754, 21] + [ ecalVeto ] 0 : Hit 4: [-160.396, -102.646, 20] + [ ecalVeto ] 0 : Hit 5: [-162.804, -98.4754, 19] + [ ecalVeto ] 0 : Hit 6: [-160.396, -102.646, 18] + [ ecalVeto ] 0 : Hit 7: [-160.396, -102.646, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, 70.9012, 21] + [ ecalVeto ] 0 : Hit 1: [-137.789, 66.7306, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, -2.36672e-14, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, -4.17066, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-125.749, 62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, 58.3892, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-155.58, -94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-153.172, -98.4754, 16] + [ ecalVeto ] 0 : Hit 2: [-155.58, -94.3048, 15] + [ ecalVeto ] 0 : Hit 3: [-153.172, -98.4754, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-112.237, -77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-109.829, -73.4515, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, -41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [16.8555, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4270.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1098 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, 4.17066, 25] + [ ecalVeto ] 0 : Hit 1: [-166.684, -2.36672e-14, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, -2.36672e-14, 23] + [ ecalVeto ] 0 : Hit 1: [-145.013, 4.17066, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, -2.36672e-14, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, 4.17066, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, -2.36672e-14, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 4.17066, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 4.17066, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2673.43; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1099 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [48.1586, 50.0479, 12] + [ ecalVeto ] 0 : Hit 2: [45.7507, 54.2186, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6906.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1100 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3750.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1101 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5575.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1102 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 21 + [ ecalVeto ] 0 : Beginning track merging using 21 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 20 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, -156.865, 28] + [ ecalVeto ] 0 : Hit 1: [-11.1041, -152.694, 27] + [ ecalVeto ] 0 : Hit 2: [-8.69618, -148.523, 26] + [ ecalVeto ] 0 : Hit 3: [-11.1041, -144.353, 25] + [ ecalVeto ] 0 : Hit 4: [-8.69618, -140.182, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -127.67, 23] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -123.499, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [97.7897, -69.2808, 22] + [ ecalVeto ] 0 : Hit 1: [95.3817, -65.1101, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -110.987, 21] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -106.817, 20] + [ ecalVeto ] 0 : Hit 2: [-11.1041, -102.646, 19] + [ ecalVeto ] 0 : Hit 3: [-8.69618, -98.4754, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [62.6062, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [60.1983, -37.5359, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -83.4132, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -79.2426, 15] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -75.0719, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [40.9348, -20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, -16.6826, 11] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 11] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [24.0793, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, -4.17066, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 20 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5839.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1103 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -127.67, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -123.499, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6151.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1104 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 10: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Hit 11: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 12: [-9.63173, -2.66454e-15, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4706.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1105 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3127.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1106 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 127.67, 15] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 131.841, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4567.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1107 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 75.0719, 15] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 75.0719, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [89.6303, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [89.0935, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4007.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1108 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3134.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1109 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 75.0719, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, 70.9012, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 62.5599, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, 58.3892, 17] + [ ecalVeto ] 0 : Hit 4: [26.4873, 54.2186, 16] + [ ecalVeto ] 0 : Hit 5: [24.0793, 50.0479, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, 41.7066, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 16.6826, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 144.353, 3] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 148.523, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 33.3653, 2] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4719.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1110 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, 66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [55.3824, 62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [52.9745, 66.7306, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4329.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1111 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10139.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1112 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -25.024, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -20.8533, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 2] + [ ecalVeto ] 0 : Hit 1: [38.5269, 25.024, 1] + [ ecalVeto ] 0 : Hit 2: [40.9348, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6087.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1113 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5236.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1114 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [161.868, -58.3892, 24] + [ ecalVeto ] 0 : Hit 1: [159.46, -54.2186, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 2] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4470.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1115 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6323.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1116 Brem photon produced 75 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4597.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1117 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, -60.9395, 18] + [ ecalVeto ] 0 : Hit 1: [67.4221, -58.3892, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2984.58; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1118 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-116.118, 37.5359, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4368.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1119 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 75.0719, 13] + [ ecalVeto ] 0 : Hit 1: [38.5269, 75.0719, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 62.5599, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4445.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1120 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6263.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1121 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4355.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1122 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [33.711, 25.024, 18] + [ ecalVeto ] 0 : Hit 2: [31.3031, 20.8533, 17] + [ ecalVeto ] 0 : Hit 3: [33.711, 16.6826, 16] + [ ecalVeto ] 0 : Hit 4: [31.3031, 12.512, 15] + [ ecalVeto ] 0 : Hit 5: [33.711, 8.34132, 14] + [ ecalVeto ] 0 : Hit 6: [31.3031, 12.512, 13] + [ ecalVeto ] 0 : Hit 7: [33.711, 16.6826, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [45.7507, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [45.7507, 12.512, 15] + [ ecalVeto ] 0 : Hit 2: [48.1586, 16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [45.7507, 20.8533, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [69.83, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [67.4221, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [62.6062, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [60.1983, 12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9187.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1123 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4469.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1124 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 83.4132, 21] + [ ecalVeto ] 0 : Hit 1: [12.0397, 79.2426, 20] + [ ecalVeto ] 0 : Hit 2: [9.63173, 75.0719, 19] + [ ecalVeto ] 0 : Hit 3: [12.0397, 70.9012, 18] + [ ecalVeto ] 0 : Hit 4: [9.63173, 66.7306, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [33.711, 25.024, 16] + [ ecalVeto ] 0 : Hit 2: [31.3031, 20.8533, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6657.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1125 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -73.4515, 25] + [ ecalVeto ] 0 : Hit 1: [-117.053, -69.2808, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5460.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1126 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4633.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1127 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -77.6221, 8] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -73.4515, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -54.2186, 8] + [ ecalVeto ] 0 : Hit 3: [-33.711, -50.0479, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [45.7507, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [45.7507, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [48.1586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [45.7507, 37.5359, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4967.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1128 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 85.9634, 11] + [ ecalVeto ] 0 : Hit 1: [-52.039, 81.7928, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4722.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1129 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 70.9012, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 70.9012, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 66.7306, 10] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 66.7306, 8] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 70.9012, 7] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 66.7306, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 62.5599, 8] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 58.3892, 7] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 54.2186, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Hit 6: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Hit 8: [9.63173, 41.7066, 1] + [ ecalVeto ] 0 : Hit 9: [12.0397, 37.5359, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6608.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1130 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-69.83, -29.1946, 15] + [ ecalVeto ] 0 : Hit 2: [-67.4221, -33.3653, 14] + [ ecalVeto ] 0 : Hit 3: [-74.6459, -29.1946, 16] + [ ecalVeto ] 0 : Hit 4: [-77.0538, -25.024, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 54.2186, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4950.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1131 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, -110.987, 28] + [ ecalVeto ] 0 : Hit 1: [52.039, -106.817, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, -102.646, 24] + [ ecalVeto ] 0 : Hit 1: [23.1438, -98.4754, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [102.606, -94.3048, 9] + [ ecalVeto ] 0 : Hit 1: [102.606, -94.3048, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3954.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1132 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1132 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, 45.8773, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [52.039, -156.865, 1] + [ ecalVeto ] 0 : Hit 1: [54.4469, -161.035, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5067.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1133 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-81.8697, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [-82.4065, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5039.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1134 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [219.659, -41.7066, 20] + [ ecalVeto ] 0 : Hit 1: [217.251, -45.8773, 19] + [ ecalVeto ] 0 : Hit 2: [219.659, -41.7066, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1631.03; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1135 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 152.694, 22] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 148.523, 21] + [ ecalVeto ] 0 : Hit 2: [-30.3676, 144.353, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 79.2426, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 75.0719, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 70.9012, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 66.7306, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2381; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1136 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-123.341, 33.3653, 22] + [ ecalVeto ] 0 : Hit 1: [-125.749, 29.1946, 21] + [ ecalVeto ] 0 : Hit 2: [-123.341, 25.024, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 25.024, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 25.024, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3740.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1137 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, -177.718, 30] + [ ecalVeto ] 0 : Hit 1: [8.69618, -173.547, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [11.1041, -161.035, 28] + [ ecalVeto ] 0 : Hit 1: [8.69618, -156.865, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -70.9012, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -66.7306, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -62.5599, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, -58.3892, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, -54.2186, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [77.0538, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [74.6459, 20.8533, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4212.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1138 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-101.67, -37.5359, 22] + [ ecalVeto ] 0 : Hit 1: [-104.078, -33.3653, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6328.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1139 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 94.3048, 22] + [ ecalVeto ] 0 : Hit 1: [66.4865, 90.1341, 21] + [ ecalVeto ] 0 : Hit 2: [68.8945, 94.3048, 20] + [ ecalVeto ] 0 : Hit 3: [66.4865, 90.1341, 19] + [ ecalVeto ] 0 : Hit 4: [68.8945, 85.9634, 20] + [ ecalVeto ] 0 : Hit 5: [66.4865, 81.7928, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5277.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1140 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3346.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1141 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -79.2426, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -75.0719, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -70.9012, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 12: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Hit 13: [-2.40793, 37.5359, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6366.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1142 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4921.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1143 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [77.0538, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [74.6459, 12.512, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6106.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1144 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [37.5914, -156.865, 29] + [ ecalVeto ] 0 : Hit 1: [39.9993, -152.694, 28] + [ ecalVeto ] 0 : Hit 2: [37.5914, -148.523, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [39.9993, -136.011, 26] + [ ecalVeto ] 0 : Hit 1: [37.5914, -131.841, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -70.9012, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -66.7306, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -62.5599, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -62.5599, 14] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -58.3892, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [73.7103, -69.2808, 13] + [ ecalVeto ] 0 : Hit 1: [76.1183, -65.1101, 12] + [ ecalVeto ] 0 : Hit 2: [73.7103, -60.9395, 11] + [ ecalVeto ] 0 : Hit 3: [76.1183, -56.7688, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3954.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1145 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -66.7306, 23] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -62.5599, 20] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -58.3892, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -20.8533, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8411.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1146 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2829.58; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1147 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3069.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1148 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 14 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 110.987, 27] + [ ecalVeto ] 0 : Hit 1: [-109.829, 106.817, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, 106.817, 25] + [ ecalVeto ] 0 : Hit 1: [-102.606, 102.646, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 102.646, 23] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 98.4754, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -85.9634, 23] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -81.7928, 22] + [ ecalVeto ] 0 : Hit 2: [-68.8945, -85.9634, 21] + [ ecalVeto ] 0 : Hit 3: [-66.4865, -90.1341, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [62.6062, 33.3653, 22] + [ ecalVeto ] 0 : Hit 1: [60.1983, 29.1946, 21] + [ ecalVeto ] 0 : Hit 2: [62.6062, 33.3653, 20] + [ ecalVeto ] 0 : Hit 3: [60.1983, 29.1946, 19] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 94.3048, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 90.1341, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -77.6221, 18] + [ ecalVeto ] 0 : Hit 2: [-61.6707, -73.4515, 17] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 90.1341, 17] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 94.3048, 16] + [ ecalVeto ] 0 : Hit 2: [-76.1183, 90.1341, 15] + [ ecalVeto ] 0 : Hit 3: [-73.7103, 85.9634, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 81.7928, 12] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 73.4515, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 70.9012, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 14 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3329.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1149 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5167.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1150 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2644.07; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1151 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, -90.1341, 29] + [ ecalVeto ] 0 : Hit 1: [-145.948, -85.9634, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -52.5982, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2034.65; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1152 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 79.2426, 1] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 83.4132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5522.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1153 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4531.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1154 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-166.684, 8.34132, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 66.7306, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 62.5599, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6783.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1155 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 181.889, 28] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 177.718, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, 90.1341, 19] + [ ecalVeto ] 0 : Hit 1: [-102.606, 94.3048, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, 73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-102.606, 69.2808, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-95.3817, 73.4515, 18] + [ ecalVeto ] 0 : Hit 1: [-97.7897, 77.6221, 17] + [ ecalVeto ] 0 : Hit 2: [-95.3817, 73.4515, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 65.1101, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 13] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4201.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1156 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 23 + [ ecalVeto ] 0 : Beginning track merging using 23 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 19 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -119.329, 33] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -115.158, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -85.9634, 29] + [ ecalVeto ] 0 : Hit 1: [-52.039, -81.7928, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -62.5599, 25] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [83.3421, 136.011, 18] + [ ecalVeto ] 0 : Hit 1: [80.9341, 140.182, 17] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 16] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -25.024, 15] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -20.8533, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [76.1183, 148.523, 16] + [ ecalVeto ] 0 : Hit 1: [73.7103, 152.694, 15] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [59.2627, -127.67, 15] + [ ecalVeto ] 0 : Hit 1: [61.6707, -123.499, 14] + [ ecalVeto ] 0 : Hit 2: [66.4865, -123.499, 15] + [ ecalVeto ] 0 : Hit 3: [68.8945, -119.329, 14] + [ ecalVeto ] 0 : Hit 4: [66.4865, -115.158, 13] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 7: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 8: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 9: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 10: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 10] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 9: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 10: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 8] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, 12.512, 6] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 19 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4341.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1157 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, 25.024, 13] + [ ecalVeto ] 0 : Hit 2: [40.9348, 29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [38.5269, 25.024, 11] + [ ecalVeto ] 0 : Hit 4: [40.9348, 20.8533, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3877.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1158 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4706.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1159 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5348.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1160 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, -25.024, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -8.34132, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 8: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4060.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1161 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 54.2186, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 37.5359, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3994.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1162 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [60.1983, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [62.6062, -25.024, 20] + [ ecalVeto ] 0 : Hit 2: [60.1983, -20.8533, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, -20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [52.9745, -25.024, 17] + [ ecalVeto ] 0 : Hit 2: [55.3824, -20.8533, 16] + [ ecalVeto ] 0 : Hit 3: [52.9745, -25.024, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9855.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1163 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2345.91; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1164 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 18] + [ ecalVeto ] 0 : Hit 2: [-33.711, -33.3653, 17] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -29.1946, 16] + [ ecalVeto ] 0 : Hit 4: [-33.711, -25.024, 15] + [ ecalVeto ] 0 : Hit 5: [-31.3031, -20.8533, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5341.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1165 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3563.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1166 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 14] + [ ecalVeto ] 0 : Hit 1: [26.4873, -12.512, 12] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 13] + [ ecalVeto ] 0 : Hit 3: [31.3031, -12.512, 11] + [ ecalVeto ] 0 : Hit 4: [33.711, -16.6826, 10] + [ ecalVeto ] 0 : Hit 5: [33.711, -16.6826, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [45.7507, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [45.7507, 20.8533, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5574.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1167 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6747.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1168 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [-26.4873, -20.8533, 13] + [ ecalVeto ] 0 : Hit 4: [-24.0793, -25.024, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4217; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1169 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, -69.2808, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, -65.1101, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [90.5659, -156.865, 20] + [ ecalVeto ] 0 : Hit 1: [88.1579, -152.694, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -60.9395, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -56.7688, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -52.5982, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -50.0479, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [61.6707, -106.817, 14] + [ ecalVeto ] 0 : Hit 1: [59.2627, -102.646, 13] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4488.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1170 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, -50.0479, 26] + [ ecalVeto ] 0 : Hit 1: [60.1983, -45.8773, 25] + [ ecalVeto ] 0 : Hit 2: [60.1983, -45.8773, 23] + [ ecalVeto ] 0 : Hit 3: [62.6062, -50.0479, 22] + [ ecalVeto ] 0 : Hit 4: [60.1983, -45.8773, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [52.9745, -41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [55.3824, -45.8773, 20] + [ ecalVeto ] 0 : Hit 2: [52.9745, -41.7066, 19] + [ ecalVeto ] 0 : Hit 3: [55.3824, -45.8773, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -73.4515, 5] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -69.2808, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3144.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1171 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, 123.499, 20] + [ ecalVeto ] 0 : Hit 1: [15.92, 119.329, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, -50.0479, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 18] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 17] + [ ecalVeto ] 0 : Hit 2: [2.40793, 62.5599, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, 58.3892, 14] + [ ecalVeto ] 0 : Hit 4: [2.40793, 54.2186, 13] + [ ecalVeto ] 0 : Hit 5: [4.81586, 58.3892, 12] + [ ecalVeto ] 0 : Hit 6: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Hit 7: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 8: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -25.024, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 29.1946, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4697.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1172 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, 20.8533, 33] + [ ecalVeto ] 0 : Hit 1: [-181.132, 16.6826, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, 16.6826, 29] + [ ecalVeto ] 0 : Hit 1: [-159.46, 20.8533, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-147.421, 16.6826, 27] + [ ecalVeto ] 0 : Hit 1: [-145.013, 20.8533, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 25.024, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3755.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1173 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [74.6459, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [74.6459, 4.17066, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [52.9745, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [55.3824, 12.512, 14] + [ ecalVeto ] 0 : Hit 2: [52.9745, 8.34132, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4643.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1174 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, 70.9012, 21] + [ ecalVeto ] 0 : Hit 1: [-137.789, 66.7306, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, 58.3892, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, 25.024, 15] + [ ecalVeto ] 0 : Hit 2: [40.9348, 20.8533, 14] + [ ecalVeto ] 0 : Hit 3: [38.5269, 16.6826, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 25.024, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, 20.8533, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5025.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1175 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-102.606, -77.6221, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [38.5269, 16.6826, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 115 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8668.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1176 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 20 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2414.52; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1177 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3900.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1178 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -75.0719, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -70.9012, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -66.7306, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -62.5599, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2504.21; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1179 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5044.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1180 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 24] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 23] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 22] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6128.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1181 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4281.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1182 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-88.1579, -127.67, 28] + [ ecalVeto ] 0 : Hit 1: [-90.5659, -123.499, 27] + [ ecalVeto ] 0 : Hit 2: [-88.1579, -119.329, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -110.987, 24] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -106.817, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-66.4865, -106.817, 22] + [ ecalVeto ] 0 : Hit 1: [-68.8945, -102.646, 21] + [ ecalVeto ] 0 : Hit 2: [-66.4865, -98.4754, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-52.039, -90.1341, 18] + [ ecalVeto ] 0 : Hit 2: [-54.4469, -85.9634, 17] + [ ecalVeto ] 0 : Hit 3: [-52.039, -81.7928, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -75.0719, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -70.9012, 12] + [ ecalVeto ] 0 : Hit 2: [-33.711, -66.7306, 11] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -62.5599, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4698.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1183 Brem photon produced 80 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 66.7306, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 62.5599, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 58.3892, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3864.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1184 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5865.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1185 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [219.659, 58.3892, 32] + [ ecalVeto ] 0 : Hit 1: [217.251, 54.2186, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [52.039, 131.841, 19] + [ ecalVeto ] 0 : Hit 1: [54.4469, 127.67, 18] + [ ecalVeto ] 0 : Hit 2: [52.039, 123.499, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -29.1946, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4688; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1186 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6570.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1187 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [140.197, -54.2186, 30] + [ ecalVeto ] 0 : Hit 1: [137.789, -50.0479, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 54.2186, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 70.9012, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 58.3892, 3] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5113.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1188 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4423.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1189 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 20] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 18] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 17] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 16] + [ ecalVeto ] 0 : Hit 4: [16.8555, 20.8533, 15] + [ ecalVeto ] 0 : Hit 5: [19.2635, 25.024, 14] + [ ecalVeto ] 0 : Hit 6: [16.8555, 20.8533, 13] + [ ecalVeto ] 0 : Hit 7: [19.2635, 25.024, 12] + [ ecalVeto ] 0 : Hit 8: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 9: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 9: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 10: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 11: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [52.9745, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [55.3824, 54.2186, 6] + [ ecalVeto ] 0 : Hit 2: [52.9745, 58.3892, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4251.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1190 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1190 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5043.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1191 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 22] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 21] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 20] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 17] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 16] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 15] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 14] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 13] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 8: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 11: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 12: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 13: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 22 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2068.23; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1192 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, -98.4754, 23] + [ ecalVeto ] 0 : Hit 1: [-160.396, -94.3048, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [39.9993, 102.646, 22] + [ ecalVeto ] 0 : Hit 1: [37.5914, 98.4754, 21] + [ ecalVeto ] 0 : Hit 2: [39.9993, 94.3048, 20] + [ ecalVeto ] 0 : Hit 3: [37.5914, 90.1341, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3115.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1193 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [97.7897, 77.6221, 6] + [ ecalVeto ] 0 : Hit 1: [97.7897, 77.6221, 4] + [ ecalVeto ] 0 : Hit 2: [95.3817, 73.4515, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6254.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1194 Brem photon produced 91 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, -54.2186, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, -50.0479, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3710.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1195 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 94.3048, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 90.1341, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 85.9634, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 54.2186, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Hit 4: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6781.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1196 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3014.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1197 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4587.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1198 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, 102.646, 24] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 98.4754, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1796.64; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1199 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, 81.7928, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, 79.2426, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7734.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1200 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6416.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1201 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, -41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, -37.5359, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, -37.5359, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3354.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1202 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1202 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4359; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1203 Brem photon produced 5 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [39.9993, -119.329, 2] + [ ecalVeto ] 0 : Hit 1: [37.5914, -115.158, 1] + [ ecalVeto ] 0 : Hit 2: [39.9993, -110.987, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4051.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1204 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.039, 81.7928, 20] + [ ecalVeto ] 0 : Hit 1: [-54.4469, 77.6221, 19] + [ ecalVeto ] 0 : Hit 2: [-52.039, 73.4515, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5568.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1205 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 94.3048, 7] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 90.1341, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5226.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1206 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2744.41; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1207 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1207 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -77.6221, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3309.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1208 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 37.5359, 11] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 9: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 10: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 9: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Hit 10: [-9.63173, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5620.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1209 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-116.118, 37.5359, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -25.024, 16] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -29.1946, 15] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -33.3653, 14] + [ ecalVeto ] 0 : Hit 3: [-40.9348, -29.1946, 13] + [ ecalVeto ] 0 : Hit 4: [-38.5269, -33.3653, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3885; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1210 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2910.59; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1211 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3897.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1212 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, -156.865, 32] + [ ecalVeto ] 0 : Hit 1: [59.2627, -152.694, 31] + [ ecalVeto ] 0 : Hit 2: [61.6707, -148.523, 30] + [ ecalVeto ] 0 : Hit 3: [59.2627, -144.353, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [44.8152, -119.329, 25] + [ ecalVeto ] 0 : Hit 1: [47.2231, -115.158, 24] + [ ecalVeto ] 0 : Hit 2: [44.8152, -110.987, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 58.3892, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-74.6459, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-77.0538, 16.6826, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 121 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4812.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1213 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 4.17066, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5800.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1214 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -198.571, 13] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -194.401, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6093.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1215 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -66.7306, 24] + [ ecalVeto ] 0 : Hit 1: [31.3031, -62.5599, 23] + [ ecalVeto ] 0 : Hit 2: [33.711, -58.3892, 22] + [ ecalVeto ] 0 : Hit 3: [31.3031, -62.5599, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [26.4873, -54.2186, 18] + [ ecalVeto ] 0 : Hit 2: [24.0793, -50.0479, 17] + [ ecalVeto ] 0 : Hit 3: [26.4873, -45.8773, 16] + [ ecalVeto ] 0 : Hit 4: [24.0793, -41.7066, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6323.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1216 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5758.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1217 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 169.377, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 165.206, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-33.711, 41.7066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5660.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1218 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, 115.158, 16] + [ ecalVeto ] 0 : Hit 1: [59.2627, 110.987, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3288.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1219 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, 123.499, 28] + [ ecalVeto ] 0 : Hit 1: [30.3676, 119.329, 27] + [ ecalVeto ] 0 : Hit 2: [32.7755, 123.499, 26] + [ ecalVeto ] 0 : Hit 3: [30.3676, 119.329, 25] + [ ecalVeto ] 0 : Hit 4: [32.7755, 123.499, 24] + [ ecalVeto ] 0 : Hit 5: [30.3676, 119.329, 23] + [ ecalVeto ] 0 : Hit 6: [32.7755, 115.158, 22] + [ ecalVeto ] 0 : Hit 7: [30.3676, 110.987, 21] + [ ecalVeto ] 0 : Hit 8: [32.7755, 106.817, 20] + [ ecalVeto ] 0 : Hit 9: [30.3676, 102.646, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4139.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1220 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [81.8697, -8.34132, 25] + [ ecalVeto ] 0 : Hit 1: [84.2776, -12.512, 24] + [ ecalVeto ] 0 : Hit 2: [81.8697, -16.6826, 23] + [ ecalVeto ] 0 : Hit 3: [84.2776, -20.8533, 22] + [ ecalVeto ] 0 : Hit 4: [81.8697, -16.6826, 21] + [ ecalVeto ] 0 : Hit 5: [84.2776, -20.8533, 20] + [ ecalVeto ] 0 : Hit 6: [81.8697, -16.6826, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -16.6826, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4499.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1221 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5853.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1222 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 227.766, 17] + [ ecalVeto ] 0 : Hit 1: [-52.039, 223.595, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 11] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5737.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1223 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, -136.011, 22] + [ ecalVeto ] 0 : Hit 1: [95.3817, -131.841, 21] + [ ecalVeto ] 0 : Hit 2: [97.7897, -127.67, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3330.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1224 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 3] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5367.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1225 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5918.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1226 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 14 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, 33.3653, 33] + [ ecalVeto ] 0 : Hit 1: [-173.908, 37.5359, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-169.092, 37.5359, 31] + [ ecalVeto ] 0 : Hit 1: [-166.684, 41.7066, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-161.868, 41.7066, 29] + [ ecalVeto ] 0 : Hit 1: [-159.46, 45.8773, 28] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-147.421, 50.0479, 27] + [ ecalVeto ] 0 : Hit 1: [-145.013, 54.2186, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-118.525, 58.3892, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, 54.2186, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-111.302, 45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, 41.7066, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 33.3653, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -8.34132, 13] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 10] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 10] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 8] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 14 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4541.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1227 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 50.0479, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8386.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1228 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 119.329, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, 115.158, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [60.1983, 29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [62.6062, 33.3653, 22] + [ ecalVeto ] 0 : Hit 2: [60.1983, 29.1946, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 90.1341, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 85.9634, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2919.77; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1229 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 98.4754, 29] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 102.646, 28] + [ ecalVeto ] 0 : Hit 2: [-32.7755, 106.817, 27] + [ ecalVeto ] 0 : Hit 3: [-30.3676, 102.646, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 94.3048, 29] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 98.4754, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 98.4754, 29] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 102.646, 28] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 4.17066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4660.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1230 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-116.118, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-118.525, -25.024, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6044.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1231 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 45.8773, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, 41.7066, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -41.7066, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -41.7066, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6499.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1232 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 127.67, 17] + [ ecalVeto ] 0 : Hit 1: [-52.039, 131.841, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 136.011, 14] + [ ecalVeto ] 0 : Hit 1: [-61.6707, 140.182, 13] + [ ecalVeto ] 0 : Hit 2: [-59.2627, 136.011, 12] + [ ecalVeto ] 0 : Hit 3: [-61.6707, 140.182, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4378.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1233 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, -70.9012, 27] + [ ecalVeto ] 0 : Hit 1: [-152.237, -66.7306, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-95.3817, -81.7928, 26] + [ ecalVeto ] 0 : Hit 1: [-97.7897, -77.6221, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, -70.9012, 25] + [ ecalVeto ] 0 : Hit 1: [-137.789, -66.7306, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-102.606, -77.6221, 24] + [ ecalVeto ] 0 : Hit 1: [-105.013, -73.4515, 23] + [ ecalVeto ] 0 : Hit 2: [-105.013, -73.4515, 21] + [ ecalVeto ] 0 : Hit 3: [-109.829, -73.4515, 22] + [ ecalVeto ] 0 : Hit 4: [-112.237, -69.2808, 21] + [ ecalVeto ] 0 : Hit 5: [-109.829, -65.1101, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-183.54, -79.2426, 21] + [ ecalVeto ] 0 : Hit 1: [-181.132, -83.4132, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -60.9395, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -56.7688, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3991.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1234 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-69.83, 29.1946, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6497.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1235 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, 12.512, 29] + [ ecalVeto ] 0 : Hit 1: [-123.341, 16.6826, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, 16.6826, 27] + [ ecalVeto ] 0 : Hit 1: [-116.118, 12.512, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 16.6826, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, 20.8533, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 73.4515, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, 54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 50.0479, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [31.3031, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [33.711, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [31.3031, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [33.711, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [40.9348, -20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [38.5269, -16.6826, 7] + [ ecalVeto ] 0 : Hit 6: [40.9348, -12.512, 6] + [ ecalVeto ] 0 : Hit 7: [38.5269, -16.6826, 5] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [31.3031, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [33.711, -16.6826, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 2] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6101.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1236 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -66.7306, 24] + [ ecalVeto ] 0 : Hit 1: [31.3031, -62.5599, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4374.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1237 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, -37.5359, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9849.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1238 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5595.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1239 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, 62.5599, 27] + [ ecalVeto ] 0 : Hit 1: [-123.341, 58.3892, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 54.2186, 25] + [ ecalVeto ] 0 : Hit 1: [-108.894, 50.0479, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, 45.8773, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 25.024, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 18] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 17] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 16] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 15] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 14] + [ ecalVeto ] 0 : Hit 6: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 7: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 8: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4504.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1240 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5303.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1241 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1241 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5769.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1242 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, -37.5359, 33] + [ ecalVeto ] 0 : Hit 1: [-181.132, -41.7066, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 148.523, 27] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 144.353, 26] + [ ecalVeto ] 0 : Hit 2: [-61.6707, 140.182, 25] + [ ecalVeto ] 0 : Hit 3: [-59.2627, 136.011, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-147.421, -33.3653, 27] + [ ecalVeto ] 0 : Hit 1: [-145.013, -37.5359, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-132.973, -33.3653, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, -29.1946, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-111.302, -29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, -25.024, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-104.078, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, -20.8533, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3821.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1243 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 27 + [ ecalVeto ] 0 : Beginning track merging using 27 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 25 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 33] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 32] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 31] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 29] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -94.3048, 29] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -90.1341, 28] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -85.9634, 27] + [ ecalVeto ] 0 : Hit 1: [-52.039, -81.7928, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 27] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 26] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 25] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -81.7928, 25] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -77.6221, 24] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 24] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 23] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 22] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 21] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 20] + [ ecalVeto ] 0 : Hit 5: [9.63173, -41.7066, 19] + [ ecalVeto ] 0 : Hit 6: [12.0397, -37.5359, 18] + [ ecalVeto ] 0 : Hit 7: [9.63173, -33.3653, 17] + [ ecalVeto ] 0 : Hit 8: [12.0397, -29.1946, 16] + [ ecalVeto ] 0 : Hit 9: [9.63173, -25.024, 15] + [ ecalVeto ] 0 : Hit 10: [12.0397, -20.8533, 14] + [ ecalVeto ] 0 : Hit 11: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 12: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 13: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 14: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 15: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 16: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 17: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 21] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -58.3892, 20] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 75.0719, 20] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 75.0719, 18] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 16] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 14] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 14] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -4.17066, 12] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 33.3653, 13] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [33.711, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, -45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, -41.7066, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, -45.8773, 11] + [ ecalVeto ] 0 : Hit 4: [33.711, -41.7066, 10] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -79.2426, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -75.0719, 10] + [ ecalVeto ] 0 : Track 21: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 22: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 23: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Track 24: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 25 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4055.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1244 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3380.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1245 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -41.7066, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -25.024, 17] + [ ecalVeto ] 0 : Hit 2: [-60.1983, -29.1946, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4955.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1246 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5361.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1247 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, 131.841, 7] + [ ecalVeto ] 0 : Hit 1: [-131.501, 136.011, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [19.2635, 16.6826, 2] + [ ecalVeto ] 0 : Hit 5: [19.2635, 8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [16.8555, 12.512, 3] + [ ecalVeto ] 0 : Hit 7: [19.2635, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6717.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1248 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4949.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1249 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 22 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3129.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1250 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 22 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3195.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1251 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-166.684, -41.7066, 24] + [ ecalVeto ] 0 : Hit 1: [-169.092, -45.8773, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, -12.512, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4894.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1252 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-73.7103, 110.987, 10] + [ ecalVeto ] 0 : Hit 1: [-76.1183, 106.817, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 65.1101, 9] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 69.2808, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -8.34132, 2] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -4.17066, 1] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -2.66454e-15, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5091.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1253 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -62.5599, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6599.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1254 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, -4.17066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-118.525, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-116.118, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4863; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1255 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3343.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1256 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6645; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1257 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -161.035, 1] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -156.865, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5073.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1258 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, 83.4132, 21] + [ ecalVeto ] 0 : Hit 1: [-173.908, 79.2426, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 119.329, 20] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 115.158, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -8.34132, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5861.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1259 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3850.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1260 Brem photon produced 77 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 85.9634, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 77.6221, 19] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 75.0719, 18] + [ ecalVeto ] 0 : Hit 3: [-40.9348, 70.9012, 17] + [ ecalVeto ] 0 : Hit 4: [-38.5269, 66.7306, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 58.3892, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6264.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1261 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5411.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1262 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3138.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1263 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [40.9348, 20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 85.9634, 1] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 90.1341, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6012.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1264 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5210.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1265 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -50.0479, 25] + [ ecalVeto ] 0 : Hit 1: [26.4873, -45.8773, 24] + [ ecalVeto ] 0 : Hit 2: [24.0793, -41.7066, 23] + [ ecalVeto ] 0 : Hit 3: [24.0793, -41.7066, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, 45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [-137.789, 50.0479, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 60.9395, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, 50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, 54.2186, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 56.7688, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 8: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 9: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 10: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 11: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 12: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [161.868, -25.024, 16] + [ ecalVeto ] 0 : Hit 1: [161.868, -25.024, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4196.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1266 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, 169.377, 32] + [ ecalVeto ] 0 : Hit 1: [80.9341, 165.206, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [90.5659, 115.158, 26] + [ ecalVeto ] 0 : Hit 1: [88.1579, 110.987, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 110.987, 19] + [ ecalVeto ] 0 : Hit 1: [-52.039, 106.817, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 98.4754, 14] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 94.3048, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 75.0719, 11] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 70.9012, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 54.2186, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 50.0479, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7680.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1267 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, -140.182, 18] + [ ecalVeto ] 0 : Hit 1: [15.92, -136.011, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8117.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1268 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-52.039, -90.1341, 8] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -85.9634, 7] + [ ecalVeto ] 0 : Hit 2: [-52.039, -81.7928, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Hit 7: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 8: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [140.197, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [137.789, -25.024, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5579.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1269 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [169.092, -62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [166.684, -58.3892, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Hit 7: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Hit 8: [12.0397, -37.5359, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 1] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5685.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1270 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 83.4132, 20] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 79.2426, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4351.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1271 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 131.841, 23] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 127.67, 22] + [ ecalVeto ] 0 : Hit 2: [-61.6707, 123.499, 21] + [ ecalVeto ] 0 : Hit 3: [-59.2627, 119.329, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 110.987, 19] + [ ecalVeto ] 0 : Hit 1: [-52.039, 115.158, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 81.7928, 12] + [ ecalVeto ] 0 : Hit 2: [-39.9993, 77.6221, 11] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 75.0719, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5560.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1272 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -62.5599, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -66.7306, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [-26.4873, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -54.2186, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -50.0479, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7742.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1273 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 24] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 23] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 22] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 21] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 20] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 19] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 18] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 8.34132, 17] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 4.17066, 16] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 4.17066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4766.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1274 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6172.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1275 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, 131.841, 33] + [ ecalVeto ] 0 : Hit 1: [-117.053, 127.67, 32] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3824.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1276 Brem photon produced 70 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5541.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1277 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6363.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1278 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 12.512, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3667.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1279 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6766.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1280 Brem photon produced 80 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3057.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1281 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4504.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1282 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Hit 3: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 4: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 5: [19.2635, -41.7066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5653.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1283 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, -186.059, 33] + [ ecalVeto ] 0 : Hit 1: [-124.277, -181.889, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -77.6221, 16] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -73.4515, 15] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -70.9012, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4193.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1284 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-137.789, -16.6826, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, -45.8773, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7686.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1285 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [73.7103, 94.3048, 21] + [ ecalVeto ] 0 : Hit 1: [76.1183, 90.1341, 20] + [ ecalVeto ] 0 : Hit 2: [73.7103, 94.3048, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3347.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1286 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 50.0479, 27] + [ ecalVeto ] 0 : Hit 1: [-130.565, 45.8773, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, 41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [-116.118, 37.5359, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, 29.1946, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 29.1946, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [8.69618, 106.817, 9] + [ ecalVeto ] 0 : Hit 1: [11.1041, 110.987, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4446.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1287 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 66.7306, 27] + [ ecalVeto ] 0 : Hit 1: [38.5269, 66.7306, 25] + [ ecalVeto ] 0 : Hit 2: [40.9348, 62.5599, 24] + [ ecalVeto ] 0 : Hit 3: [38.5269, 66.7306, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, 4.17066, 26] + [ ecalVeto ] 0 : Hit 1: [69.83, 4.17066, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 102.646, 15] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 106.817, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Hit 9: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Hit 10: [-12.0397, 37.5359, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2288.01; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1288 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, -45.8773, 26] + [ ecalVeto ] 0 : Hit 1: [52.9745, -41.7066, 25] + [ ecalVeto ] 0 : Hit 2: [55.3824, -45.8773, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 45.8773, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-74.6459, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 54.2186, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 50.0479, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3169.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1289 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1289 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, -58.3892, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [212.435, 70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [210.027, 66.7306, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, -45.8773, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -77.6221, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -75.0719, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -70.9012, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -66.7306, 7] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6138.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1290 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [154.644, 45.8773, 28] + [ ecalVeto ] 0 : Hit 1: [152.237, 41.7066, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [147.421, 41.7066, 26] + [ ecalVeto ] 0 : Hit 1: [145.013, 37.5359, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6992.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1291 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1291 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 215.254, 31] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 211.083, 30] + [ ecalVeto ] 0 : Hit 2: [-32.7755, 206.913, 29] + [ ecalVeto ] 0 : Hit 3: [-30.3676, 202.742, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-15.92, 186.059, 24] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 181.889, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3081.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1292 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-219.659, -2.36672e-14, 23] + [ ecalVeto ] 0 : Hit 1: [-217.251, -4.17066, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -83.4132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -79.2426, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5248.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1293 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [119.461, 165.206, 32] + [ ecalVeto ] 0 : Hit 1: [117.053, 161.035, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [112.237, 152.694, 30] + [ ecalVeto ] 0 : Hit 1: [109.829, 148.523, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [105.013, 140.182, 28] + [ ecalVeto ] 0 : Hit 1: [102.606, 136.011, 27] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-66.4865, 65.1101, 8] + [ ecalVeto ] 0 : Hit 1: [-68.8945, 69.2808, 7] + [ ecalVeto ] 0 : Hit 2: [-66.4865, 73.4515, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3817.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1294 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4812.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1295 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -41.7066, 18] + [ ecalVeto ] 0 : Hit 1: [-69.83, -45.8773, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -94.3048, 16] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -90.1341, 15] + [ ecalVeto ] 0 : Hit 2: [-30.3676, -85.9634, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-102.606, -85.9634, 16] + [ ecalVeto ] 0 : Hit 1: [-102.606, -85.9634, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [-77.0538, -33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-82.4065, -37.5359, 13] + [ ecalVeto ] 0 : Hit 4: [-81.8697, -41.7066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [-69.83, -37.5359, 13] + [ ecalVeto ] 0 : Hit 3: [-69.83, -37.5359, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11711.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1296 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, -29.1946, 28] + [ ecalVeto ] 0 : Hit 1: [123.341, -25.024, 27] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2257.6; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1297 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [89.6303, -16.6826, 32] + [ ecalVeto ] 0 : Hit 1: [89.6303, -16.6826, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [52.9745, -8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [55.3824, -12.512, 20] + [ ecalVeto ] 0 : Hit 2: [52.9745, -16.6826, 19] + [ ecalVeto ] 0 : Hit 3: [55.3824, -20.8533, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1152.28; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1298 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Hit 5: [16.8555, 37.5359, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6400.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1299 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3229.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1300 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, 90.1341, 26] + [ ecalVeto ] 0 : Hit 1: [44.8152, 85.9634, 25] + [ ecalVeto ] 0 : Hit 2: [47.2231, 81.7928, 24] + [ ecalVeto ] 0 : Hit 3: [44.8152, 77.6221, 23] + [ ecalVeto ] 0 : Hit 4: [47.2231, 73.4515, 22] + [ ecalVeto ] 0 : Hit 5: [45.7507, 70.9012, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, 70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, 66.7306, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 58.3892, 18] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 17] + [ ecalVeto ] 0 : Hit 2: [33.711, 58.3892, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6354.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1301 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 83.4132, 27] + [ ecalVeto ] 0 : Hit 1: [12.0397, 79.2426, 26] + [ ecalVeto ] 0 : Hit 2: [9.63173, 75.0719, 25] + [ ecalVeto ] 0 : Hit 3: [12.0397, 70.9012, 24] + [ ecalVeto ] 0 : Hit 4: [9.63173, 66.7306, 23] + [ ecalVeto ] 0 : Hit 5: [12.0397, 62.5599, 22] + [ ecalVeto ] 0 : Hit 6: [9.63173, 58.3892, 21] + [ ecalVeto ] 0 : Hit 7: [12.0397, 54.2186, 20] + [ ecalVeto ] 0 : Hit 8: [9.63173, 50.0479, 19] + [ ecalVeto ] 0 : Hit 9: [12.0397, 45.8773, 18] + [ ecalVeto ] 0 : Hit 10: [9.63173, 41.7066, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -75.0719, 17] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -75.0719, 15] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -70.9012, 14] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -66.7306, 13] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -62.5599, 12] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 9: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 10: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 11: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3159.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1302 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-95.3817, 173.547, 32] + [ ecalVeto ] 0 : Hit 1: [-97.7897, 169.377, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-102.606, 161.035, 30] + [ ecalVeto ] 0 : Hit 1: [-105.013, 156.865, 29] + [ ecalVeto ] 0 : Hit 2: [-102.606, 152.694, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [39.9993, 102.646, 28] + [ ecalVeto ] 0 : Hit 1: [37.5914, 106.817, 27] + [ ecalVeto ] 0 : Hit 2: [39.9993, 102.646, 26] + [ ecalVeto ] 0 : Hit 3: [37.5914, 98.4754, 25] + [ ecalVeto ] 0 : Hit 4: [39.9993, 102.646, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 144.353, 27] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 148.523, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [32.7755, 81.7928, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, 79.2426, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, 75.0719, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, 70.9012, 17] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 54.2186, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 50.0479, 13] + [ ecalVeto ] 0 : Hit 4: [26.4873, 45.8773, 12] + [ ecalVeto ] 0 : Hit 5: [24.0793, 41.7066, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3354.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1303 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, -20.8533, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 62.5599, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7535.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1304 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5756.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1305 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [69.83, -37.5359, 30] + [ ecalVeto ] 0 : Hit 1: [67.4221, -33.3653, 29] + [ ecalVeto ] 0 : Hit 2: [67.4221, -33.3653, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [62.6062, -33.3653, 26] + [ ecalVeto ] 0 : Hit 1: [60.1983, -29.1946, 25] + [ ecalVeto ] 0 : Hit 2: [62.6062, -25.024, 24] + [ ecalVeto ] 0 : Hit 3: [60.1983, -29.1946, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [55.3824, -29.1946, 22] + [ ecalVeto ] 0 : Hit 1: [52.9745, -25.024, 21] + [ ecalVeto ] 0 : Hit 2: [55.3824, -29.1946, 20] + [ ecalVeto ] 0 : Hit 3: [52.9745, -25.024, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [40.9348, -29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, -25.024, 15] + [ ecalVeto ] 0 : Hit 2: [40.9348, -29.1946, 14] + [ ecalVeto ] 0 : Hit 3: [38.5269, -25.024, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -110.987, 6] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -106.817, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4233.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1306 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 73.4515, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 69.2808, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 65.1101, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 58.3892, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2857.21; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1307 Brem photon produced 78 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5763.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1308 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 20] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 13] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4088.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1309 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4766.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1310 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 33.3653, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, 29.1946, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, 37.5359, 25] + [ ecalVeto ] 0 : Hit 1: [-137.789, 33.3653, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, -8.34132, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -25.024, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -8.34132, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-87.2224, -37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [-89.6303, -33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [-87.2224, -37.5359, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -8.34132, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -8.34132, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4442.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1311 Brem photon produced 94 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3227.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1312 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 94.3048, 25] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 98.4754, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, 8.34132, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 94.3048, 22] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 90.1341, 21] + [ ecalVeto ] 0 : Hit 2: [-30.3676, 85.9634, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5585.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1313 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -12.512, 18] + [ ecalVeto ] 0 : Hit 1: [38.5269, -16.6826, 17] + [ ecalVeto ] 0 : Hit 2: [38.5269, -16.6826, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -25.024, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4590.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1314 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4645.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1315 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 41.7066, 28] + [ ecalVeto ] 0 : Hit 1: [31.3031, 37.5359, 27] + [ ecalVeto ] 0 : Hit 2: [33.711, 33.3653, 26] + [ ecalVeto ] 0 : Hit 3: [31.3031, 29.1946, 25] + [ ecalVeto ] 0 : Hit 4: [31.3031, 29.1946, 23] + [ ecalVeto ] 0 : Hit 5: [26.4873, 29.1946, 24] + [ ecalVeto ] 0 : Hit 6: [26.4873, 29.1946, 22] + [ ecalVeto ] 0 : Hit 7: [24.0793, 25.024, 21] + [ ecalVeto ] 0 : Hit 8: [24.0793, 25.024, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 15] + [ ecalVeto ] 0 : Hit 4: [16.8555, 12.512, 13] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 14] + [ ecalVeto ] 0 : Hit 6: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 8: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 9: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3305.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1316 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [69.83, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [67.4221, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [69.83, -12.512, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6629.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1317 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 1] + [ ecalVeto ] 0 : Hit 1: [4.81586, 66.7306, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3779.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1318 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, 85.9634, 22] + [ ecalVeto ] 0 : Hit 1: [37.5914, 81.7928, 21] + [ ecalVeto ] 0 : Hit 2: [39.9993, 85.9634, 20] + [ ecalVeto ] 0 : Hit 3: [37.5914, 81.7928, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [32.7755, 90.1341, 22] + [ ecalVeto ] 0 : Hit 1: [30.3676, 85.9634, 21] + [ ecalVeto ] 0 : Hit 2: [32.7755, 81.7928, 20] + [ ecalVeto ] 0 : Hit 3: [31.3031, 79.2426, 19] + [ ecalVeto ] 0 : Hit 4: [32.7755, 81.7928, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4865.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1319 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5205.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1320 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 5 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1816.69; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1321 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [154.644, -54.2186, 30] + [ ecalVeto ] 0 : Hit 1: [152.237, -50.0479, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-123.341, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10596.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1322 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [-69.83, 45.8773, 17] + [ ecalVeto ] 0 : Hit 3: [-67.4221, 50.0479, 16] + [ ecalVeto ] 0 : Hit 4: [-67.4221, 58.3892, 18] + [ ecalVeto ] 0 : Hit 5: [-67.4221, 58.3892, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 54.2186, 15] + [ ecalVeto ] 0 : Hit 3: [-52.9745, 50.0479, 14] + [ ecalVeto ] 0 : Hit 4: [-48.1586, 50.0479, 15] + [ ecalVeto ] 0 : Hit 5: [-45.7507, 45.8773, 14] + [ ecalVeto ] 0 : Hit 6: [-48.1586, 41.7066, 13] + [ ecalVeto ] 0 : Hit 7: [-45.7507, 37.5359, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 54.2186, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-73.7103, 60.9395, 16] + [ ecalVeto ] 0 : Hit 1: [-76.1183, 56.7688, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 25.024, 14] + [ ecalVeto ] 0 : Hit 1: [-69.83, 29.1946, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6110.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1323 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Hit 7: [12.0397, -12.512, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7756.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1324 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 22] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 41.7066, 21] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 37.5359, 20] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 33.3653, 19] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 29.1946, 18] + [ ecalVeto ] 0 : Hit 6: [-19.2635, 25.024, 17] + [ ecalVeto ] 0 : Hit 7: [-16.8555, 20.8533, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 18] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 12.512, 16] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 8.34132, 15] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 4.17066, 14] + [ ecalVeto ] 0 : Hit 5: [-19.2635, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 6: [-16.8555, 4.17066, 12] + [ ecalVeto ] 0 : Hit 7: [-19.2635, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 8: [-16.8555, -4.17066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 12] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 10: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 11: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 12: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 13: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Hit 14: [-12.0397, -20.8533, 1] + [ ecalVeto ] 0 : Hit 15: [-9.63173, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1779.08; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1325 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [16.8555, 37.5359, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10472.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1326 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6786.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1327 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, 52.5982, 22] + [ ecalVeto ] 0 : Hit 1: [81.8697, 50.0479, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -94.3048, 15] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -98.4754, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3427.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1328 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [-69.83, 12.512, 13] + [ ecalVeto ] 0 : Hit 3: [-67.4221, 16.6826, 12] + [ ecalVeto ] 0 : Hit 4: [-67.4221, 16.6826, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4456.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1329 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -20.8533, 13] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -16.6826, 12] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -12.512, 14] + [ ecalVeto ] 0 : Hit 6: [-16.8555, -12.512, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -4.17066, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 15] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -25.024, 14] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -29.1946, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 11] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -37.5359, 1] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7848.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1330 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3952.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1331 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -110.987, 20] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -106.817, 19] + [ ecalVeto ] 0 : Hit 2: [-30.3676, -102.646, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -83.4132, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -79.2426, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -75.0719, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -70.9012, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -165.206, 11] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -161.035, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4280.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1332 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1332 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, 58.3892, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, 62.5599, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5672.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1333 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6808.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1334 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7427.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1335 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 77.6221, 23] + [ ecalVeto ] 0 : Hit 1: [-52.039, 73.4515, 22] + [ ecalVeto ] 0 : Hit 2: [-54.4469, 69.2808, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5376.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1336 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -33.3653, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 5: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 6: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 7: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5842.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1337 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [26.4873, 54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [26.4873, 54.2186, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 50.0479, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 1] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4739.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1338 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -25.024, 23] + [ ecalVeto ] 0 : Hit 1: [26.4873, -29.1946, 22] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 21] + [ ecalVeto ] 0 : Hit 3: [26.4873, -29.1946, 20] + [ ecalVeto ] 0 : Hit 4: [24.0793, -33.3653, 19] + [ ecalVeto ] 0 : Hit 5: [26.4873, -29.1946, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3693.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1339 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -91.7545, 22] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -87.5839, 21] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -83.4132, 20] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -83.4132, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3392.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1340 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, -50.0479, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -45.8773, 11] + [ ecalVeto ] 0 : Hit 3: [19.2635, -50.0479, 10] + [ ecalVeto ] 0 : Hit 4: [16.8555, -54.2186, 9] + [ ecalVeto ] 0 : Hit 5: [19.2635, -50.0479, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4427.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1341 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [31.3031, -12.512, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7568.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1342 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -94.3048, 13] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -98.4754, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6121.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1343 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-188.356, -37.5359, 18] + [ ecalVeto ] 0 : Hit 1: [-190.763, -33.3653, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4352.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1344 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2720.41; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1345 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 33.3653, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 4] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 58.3892, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 120 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7559.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1346 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 21] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 20] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 15] + [ ecalVeto ] 0 : Hit 4: [19.2635, 25.024, 14] + [ ecalVeto ] 0 : Hit 5: [16.8555, 20.8533, 13] + [ ecalVeto ] 0 : Hit 6: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 8: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 9: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 10: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 11: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 12: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 13: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 14: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 15: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 16: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [62.6062, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [62.6062, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [60.1983, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4675; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1347 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3345.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1348 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3688.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1349 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5444.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1350 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, 62.5599, 27] + [ ecalVeto ] 0 : Hit 1: [-152.237, 58.3892, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 58.3892, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, 54.2186, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, 29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4030.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1351 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2208.73; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1352 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 50.0479, 8] + [ ecalVeto ] 0 : Hit 4: [-38.5269, 50.0479, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4979.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1353 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 22 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3347.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1354 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [40.9348, 37.5359, 22] + [ ecalVeto ] 0 : Hit 2: [38.5269, 41.7066, 21] + [ ecalVeto ] 0 : Hit 3: [40.9348, 45.8773, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 8: [4.81586, -8.34132, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8600.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1355 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 12.512, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4132.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1356 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 18] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -50.0479, 17] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -54.2186, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3710.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1357 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [111.302, -12.512, 28] + [ ecalVeto ] 0 : Hit 1: [108.894, -16.6826, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 17] + [ ecalVeto ] 0 : Hit 4: [19.2635, -25.024, 16] + [ ecalVeto ] 0 : Hit 5: [16.8555, -20.8533, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, -29.1946, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3273.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1358 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 5: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5412.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1359 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3307.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1360 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5382.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1361 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5160.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1362 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, -94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [-138.725, -90.1341, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -45.8773, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -29.1946, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -60.9395, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -58.3892, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4952.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1363 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5389.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1364 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 165.206, 26] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 161.035, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-15.92, 152.694, 22] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 148.523, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 127.67, 19] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 123.499, 18] + [ ecalVeto ] 0 : Hit 2: [-11.1041, 119.329, 17] + [ ecalVeto ] 0 : Hit 3: [-8.69618, 115.158, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 12] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6454.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1365 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4329.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1366 Brem photon produced 75 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5006.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1367 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3928.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1368 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [40.9348, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [40.9348, -29.1946, 2] + [ ecalVeto ] 0 : Hit 4: [38.5269, -25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5651.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1369 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -90.1341, 1] + [ ecalVeto ] 0 : Hit 1: [-15.92, -94.3048, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4712.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1370 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -50.0479, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -37.5359, 13] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -41.7066, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -110.987, 6] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -106.817, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -94.3048, 5] + [ ecalVeto ] 0 : Hit 1: [-52.039, -90.1341, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5806.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1371 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -79.2426, 23] + [ ecalVeto ] 0 : Hit 1: [33.711, -75.0719, 22] + [ ecalVeto ] 0 : Hit 2: [31.3031, -70.9012, 21] + [ ecalVeto ] 0 : Hit 3: [33.711, -66.7306, 20] + [ ecalVeto ] 0 : Hit 4: [31.3031, -62.5599, 19] + [ ecalVeto ] 0 : Hit 5: [31.3031, -62.5599, 17] + [ ecalVeto ] 0 : Hit 6: [26.4873, -62.5599, 18] + [ ecalVeto ] 0 : Hit 7: [26.4873, -62.5599, 16] + [ ecalVeto ] 0 : Hit 8: [24.0793, -58.3892, 15] + [ ecalVeto ] 0 : Hit 9: [26.4873, -54.2186, 14] + [ ecalVeto ] 0 : Hit 10: [24.0793, -50.0479, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 54.2186, 18] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 50.0479, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5173.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1372 Brem photon produced 77 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7566.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1373 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 22] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 21] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 20] + [ ecalVeto ] 0 : Hit 4: [9.63173, -41.7066, 19] + [ ecalVeto ] 0 : Hit 5: [12.0397, -37.5359, 18] + [ ecalVeto ] 0 : Hit 6: [9.63173, -41.7066, 17] + [ ecalVeto ] 0 : Hit 7: [12.0397, -37.5359, 16] + [ ecalVeto ] 0 : Hit 8: [9.63173, -41.7066, 15] + [ ecalVeto ] 0 : Hit 9: [12.0397, -37.5359, 14] + [ ecalVeto ] 0 : Hit 10: [9.63173, -41.7066, 13] + [ ecalVeto ] 0 : Hit 11: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 12: [9.63173, -41.7066, 11] + [ ecalVeto ] 0 : Hit 13: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6546.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1374 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4323.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1375 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -58.3892, 29] + [ ecalVeto ] 0 : Hit 1: [26.4873, -54.2186, 28] + [ ecalVeto ] 0 : Hit 2: [24.0793, -58.3892, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 24] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 23] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 22] + [ ecalVeto ] 0 : Hit 3: [16.8555, -45.8773, 21] + [ ecalVeto ] 0 : Hit 4: [19.2635, -50.0479, 20] + [ ecalVeto ] 0 : Hit 5: [16.8555, -45.8773, 19] + [ ecalVeto ] 0 : Hit 6: [19.2635, -50.0479, 18] + [ ecalVeto ] 0 : Hit 7: [16.8555, -45.8773, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5072.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1376 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5262.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1377 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [118.525, -33.3653, 30] + [ ecalVeto ] 0 : Hit 1: [116.118, -37.5359, 29] + [ ecalVeto ] 0 : Hit 2: [118.525, -41.7066, 28] + [ ecalVeto ] 0 : Hit 3: [116.118, -37.5359, 27] + [ ecalVeto ] 0 : Hit 4: [118.525, -41.7066, 26] + [ ecalVeto ] 0 : Hit 5: [116.118, -37.5359, 25] + [ ecalVeto ] 0 : Hit 6: [118.525, -41.7066, 24] + [ ecalVeto ] 0 : Hit 7: [116.118, -45.8773, 23] + [ ecalVeto ] 0 : Hit 8: [118.525, -50.0479, 22] + [ ecalVeto ] 0 : Hit 9: [116.118, -54.2186, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -102.646, 23] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -98.4754, 22] + [ ecalVeto ] 0 : Hit 2: [-11.1041, -94.3048, 21] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -91.7545, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 70.9012, 23] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 75.0719, 22] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 70.9012, 21] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 66.7306, 20] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 66.7306, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -58.3892, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -54.2186, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 54.2186, 14] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 50.0479, 13] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 45.8773, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2060.24; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1378 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4931.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1379 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 33.3653, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5226.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1380 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3069.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1381 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [38.5269, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [40.9348, -29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8104.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1382 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -85.9634, 23] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -85.9634, 21] + [ ecalVeto ] 0 : Hit 2: [-52.039, -81.7928, 20] + [ ecalVeto ] 0 : Hit 3: [-54.4469, -77.6221, 19] + [ ecalVeto ] 0 : Hit 4: [-52.039, -73.4515, 18] + [ ecalVeto ] 0 : Hit 5: [-54.4469, -69.2808, 17] + [ ecalVeto ] 0 : Hit 6: [-52.9745, -66.7306, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 14] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -58.3892, 13] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -54.2186, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5910.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1383 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 90.1341, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 87.5839, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -94.3048, 13] + [ ecalVeto ] 0 : Hit 1: [-52.039, -98.4754, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -85.9634, 12] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -81.7928, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 123 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5505.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1384 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -12.512, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, -45.8773, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, 8.34132, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4444.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1385 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4746.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1386 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 87.5839, 24] + [ ecalVeto ] 0 : Hit 1: [9.63173, 83.4132, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 14] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 13] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 6: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1773.16; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1387 Brem photon produced 70 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7776.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1388 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5923.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1389 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, -29.1946, 27] + [ ecalVeto ] 0 : Hit 1: [-166.684, -25.024, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, -25.024, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -25.024, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 12.512, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3608.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1390 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 91.7545, 20] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 87.5839, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 66.7306, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 62.5599, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3422.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1391 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-241.33, 29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [-238.922, 25.024, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-176.316, -2.36672e-14, 17] + [ ecalVeto ] 0 : Hit 1: [-173.908, -4.17066, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-123.341, -25.024, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3226.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1392 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 18 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2982.87; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1393 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4894.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1394 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3172.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1395 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -73.4515, 25] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -69.2808, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 8: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 9: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 10: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Hit 11: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 12: [12.0397, -4.17066, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4185.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1396 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4133.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1397 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 13 + [ ecalVeto ] 0 : Beginning track merging using 13 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-190.763, -2.36672e-14, 29] + [ ecalVeto ] 0 : Hit 1: [-188.356, 4.17066, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, 4.17066, 25] + [ ecalVeto ] 0 : Hit 1: [-152.237, 8.34132, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, 4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-137.789, 8.34132, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [141.132, 119.329, 22] + [ ecalVeto ] 0 : Hit 1: [138.725, 115.158, 21] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [38.5269, 33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [40.9348, 29.1946, 20] + [ ecalVeto ] 0 : Hit 2: [38.5269, 33.3653, 19] + [ ecalVeto ] 0 : Hit 3: [40.9348, 37.5359, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [126.685, 110.987, 20] + [ ecalVeto ] 0 : Hit 1: [124.277, 106.817, 19] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-118.525, 8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 12.512, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-104.078, 16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 12.512, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 12.512, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [83.3421, 102.646, 14] + [ ecalVeto ] 0 : Hit 1: [80.9341, 98.4754, 13] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 12] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [68.8945, 94.3048, 12] + [ ecalVeto ] 0 : Hit 1: [66.4865, 90.1341, 11] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2582.85; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1398 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-33.711, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -12.512, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5213.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1399 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3288.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1400 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 140.182, 24] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 136.011, 23] + [ ecalVeto ] 0 : Hit 2: [-37.5914, 131.841, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [154.644, -12.512, 22] + [ ecalVeto ] 0 : Hit 1: [152.237, -8.34132, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [125.749, -4.17066, 18] + [ ecalVeto ] 0 : Hit 1: [123.341, -2.66454e-15, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 90.1341, 16] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 85.9634, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 79.2426, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 75.0719, 13] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 70.9012, 12] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 75.0719, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 50.0479, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5360.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1401 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6361.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1402 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, 73.4515, 20] + [ ecalVeto ] 0 : Hit 1: [45.7507, 70.9012, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 25.024, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-94.4462, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-96.8541, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [-94.4462, 33.3653, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-52.9745, 16.6826, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4559.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1403 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, -110.987, 20] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -106.817, 19] + [ ecalVeto ] 0 : Hit 2: [-15.92, -102.646, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -70.9012, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5881.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1404 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [104.078, -50.0479, 32] + [ ecalVeto ] 0 : Hit 1: [104.078, -50.0479, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 25.024, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3564; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1405 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 29.1946, 25] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 25.024, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 8: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5173.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1406 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -58.3892, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [40.9348, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [38.5269, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [40.9348, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [38.5269, -25.024, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [31.3031, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [33.711, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6130.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1407 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3263.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1408 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [40.9348, -4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [38.5269, -8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [40.9348, -12.512, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4831.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1409 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -54.2186, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, -58.3892, 12] + [ ecalVeto ] 0 : Hit 5: [4.81586, -66.7306, 14] + [ ecalVeto ] 0 : Hit 6: [2.40793, -62.5599, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-95.3817, 90.1341, 10] + [ ecalVeto ] 0 : Hit 1: [-97.7897, 94.3048, 9] + [ ecalVeto ] 0 : Hit 2: [-95.3817, 98.4754, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3284.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1410 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, -106.817, 10] + [ ecalVeto ] 0 : Hit 1: [-11.1041, -102.646, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -75.0719, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -79.2426, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -66.7306, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -62.5599, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4702.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1411 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [33.711, -58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [31.3031, -62.5599, 15] + [ ecalVeto ] 0 : Hit 3: [33.711, -58.3892, 14] + [ ecalVeto ] 0 : Hit 4: [31.3031, -54.2186, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2638.44; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1412 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-219.659, -33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [-217.251, -37.5359, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-205.211, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-202.803, -37.5359, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-190.763, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-188.356, -37.5359, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [33.711, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [31.3031, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4281.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1413 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3833.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1414 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6872.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1415 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3467.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1416 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, 56.7688, 14] + [ ecalVeto ] 0 : Hit 1: [74.6459, 54.2186, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, 54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [55.3824, 54.2186, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6224.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1417 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6564.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1418 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2759.03; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1419 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 22] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 21] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 20] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 19] + [ ecalVeto ] 0 : Hit 4: [16.8555, -20.8533, 17] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 18] + [ ecalVeto ] 0 : Hit 6: [12.0397, -20.8533, 16] + [ ecalVeto ] 0 : Hit 7: [9.63173, -25.024, 15] + [ ecalVeto ] 0 : Hit 8: [12.0397, -29.1946, 14] + [ ecalVeto ] 0 : Hit 9: [9.63173, -33.3653, 13] + [ ecalVeto ] 0 : Hit 10: [12.0397, -29.1946, 12] + [ ecalVeto ] 0 : Hit 11: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, 106.817, 21] + [ ecalVeto ] 0 : Hit 1: [-131.501, 102.646, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 14] + [ ecalVeto ] 0 : Hit 2: [16.8555, -45.8773, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4225.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1420 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [66.4865, -81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [68.8945, -77.6221, 22] + [ ecalVeto ] 0 : Hit 2: [66.4865, -73.4515, 21] + [ ecalVeto ] 0 : Hit 3: [68.8945, -77.6221, 20] + [ ecalVeto ] 0 : Hit 4: [66.4865, -73.4515, 19] + [ ecalVeto ] 0 : Hit 5: [68.8945, -69.2808, 18] + [ ecalVeto ] 0 : Hit 6: [66.4865, -65.1101, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [61.6707, -65.1101, 16] + [ ecalVeto ] 0 : Hit 1: [60.1983, -62.5599, 15] + [ ecalVeto ] 0 : Hit 2: [62.6062, -58.3892, 14] + [ ecalVeto ] 0 : Hit 3: [60.1983, -62.5599, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [55.3824, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [52.9745, -58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [55.3824, -54.2186, 10] + [ ecalVeto ] 0 : Hit 3: [52.9745, -50.0479, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3956.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1421 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2765.25; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1422 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5184.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1423 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2629.48; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1424 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [77.0538, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [74.6459, 37.5359, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4755.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1425 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8273.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1426 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 131.841, 21] + [ ecalVeto ] 0 : Hit 1: [-15.92, 127.67, 20] + [ ecalVeto ] 0 : Hit 2: [-18.3279, 123.499, 19] + [ ecalVeto ] 0 : Hit 3: [-15.92, 119.329, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [94.4462, 8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [96.8541, 12.512, 18] + [ ecalVeto ] 0 : Hit 2: [94.4462, 8.34132, 17] + [ ecalVeto ] 0 : Hit 3: [96.8541, 12.512, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 106.817, 17] + [ ecalVeto ] 0 : Hit 1: [-15.92, 102.646, 16] + [ ecalVeto ] 0 : Hit 2: [-18.3279, 98.4754, 15] + [ ecalVeto ] 0 : Hit 3: [-15.92, 94.3048, 14] + [ ecalVeto ] 0 : Hit 4: [-15.92, 94.3048, 12] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 87.5839, 13] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 83.4132, 12] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 79.2426, 11] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 75.0719, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3515.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1427 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -65.1101, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [61.6707, -81.7928, 10] + [ ecalVeto ] 0 : Hit 1: [59.2627, -77.6221, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4323.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1428 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [205.211, 75.0719, 30] + [ ecalVeto ] 0 : Hit 1: [202.803, 70.9012, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [190.763, 66.7306, 28] + [ ecalVeto ] 0 : Hit 1: [188.356, 62.5599, 27] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4063.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1429 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 2] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6233.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1430 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5076.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1431 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, -119.329, 13] + [ ecalVeto ] 0 : Hit 1: [-124.277, -115.158, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -102.646, 11] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -98.4754, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4087.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1432 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, 4.17066, 27] + [ ecalVeto ] 0 : Hit 1: [-181.132, -2.36672e-14, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, -75.0719, 13] + [ ecalVeto ] 0 : Hit 1: [-130.565, -70.9012, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-116.118, -62.5599, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5226.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1433 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 50.0479, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [62.6062, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [60.1983, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6128.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1434 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 608.155; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1435 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5210.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1436 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5781.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1437 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 13 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1941.06; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1438 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 13 + [ ecalVeto ] 0 : Beginning track merging using 13 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 144.353, 23] + [ ecalVeto ] 0 : Hit 1: [-138.725, 140.182, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 106.817, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 102.646, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 98.4754, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 94.3048, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 90.1341, 13] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 85.9634, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -45.8773, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -50.0479, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 73.4515, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 70.9012, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 5: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 6: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 7: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5807.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1439 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6322.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1440 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 91.7545, 27] + [ ecalVeto ] 0 : Hit 1: [12.0397, 87.5839, 26] + [ ecalVeto ] 0 : Hit 2: [9.63173, 83.4132, 25] + [ ecalVeto ] 0 : Hit 3: [12.0397, 79.2426, 24] + [ ecalVeto ] 0 : Hit 4: [9.63173, 75.0719, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 20] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 19] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 18] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 17] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 16] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 15] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 14] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 13] + [ ecalVeto ] 0 : Hit 8: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 9: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 10: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5350.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1441 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 7: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 8: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2897.04; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1442 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -81.7928, 9] + [ ecalVeto ] 0 : Hit 1: [-102.606, -77.6221, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2102.43; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1443 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Hit 8: [9.63173, 25.024, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4917.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1444 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -98.4754, 24] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -94.3048, 23] + [ ecalVeto ] 0 : Hit 2: [-37.5914, -90.1341, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -85.9634, 20] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -81.7928, 19] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -79.2426, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -85.9634, 9] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -81.7928, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3433.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1445 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2638.3; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1446 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 24] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 23] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 22] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 21] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 20] + [ ecalVeto ] 0 : Hit 5: [2.40793, -45.8773, 19] + [ ecalVeto ] 0 : Hit 6: [4.81586, -41.7066, 18] + [ ecalVeto ] 0 : Hit 7: [2.40793, -37.5359, 17] + [ ecalVeto ] 0 : Hit 8: [4.81586, -33.3653, 16] + [ ecalVeto ] 0 : Hit 9: [2.40793, -29.1946, 15] + [ ecalVeto ] 0 : Hit 10: [4.81586, -33.3653, 14] + [ ecalVeto ] 0 : Hit 11: [2.40793, -29.1946, 13] + [ ecalVeto ] 0 : Hit 12: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 13: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4391.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1447 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [67.4221, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [69.83, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [67.4221, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5203.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1448 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-205.211, -75.0719, 21] + [ ecalVeto ] 0 : Hit 1: [-202.803, -70.9012, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-176.316, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-173.908, -54.2186, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -2.36672e-14, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3572.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1449 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6003.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1450 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, 75.0719, 25] + [ ecalVeto ] 0 : Hit 1: [-159.46, 70.9012, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, 62.5599, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, 58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 54.2186, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-104.078, 50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 54.2186, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5583.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1451 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2483.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1452 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, 45.8773, 33] + [ ecalVeto ] 0 : Hit 1: [-166.684, 50.0479, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, 45.8773, 27] + [ ecalVeto ] 0 : Hit 1: [-137.789, 41.7066, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, 41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, 37.5359, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 123.499, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 127.67, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-125.749, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, 33.3653, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-104.078, 33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, 29.1946, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3254.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1453 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 22] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 17] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 16] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 15] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 9: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 10: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 11: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 12: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 13: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 14: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 15: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 16: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 17: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 18: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 81.7928, 11] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 85.9634, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4847.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1454 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 5: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 7] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6092.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1455 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -83.4132, 25] + [ ecalVeto ] 0 : Hit 1: [-173.908, -79.2426, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, -70.9012, 21] + [ ecalVeto ] 0 : Hit 1: [-137.789, -75.0719, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, -70.9012, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, -66.7306, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4963.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1456 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 110.987, 26] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 106.817, 25] + [ ecalVeto ] 0 : Hit 2: [-30.3676, 102.646, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, -33.3653, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -25.024, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6195.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1457 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [-69.83, 37.5359, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [-60.1983, 37.5359, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 50.0479, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [26.4873, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [24.0793, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [26.4873, 4.17066, 2] + [ ecalVeto ] 0 : Hit 4: [24.0793, 8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4303.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1458 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -169.377, 33] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -165.206, 32] + [ ecalVeto ] 0 : Hit 2: [-39.9993, -161.035, 31] + [ ecalVeto ] 0 : Hit 3: [-37.5914, -156.865, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -136.011, 27] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -131.841, 26] + [ ecalVeto ] 0 : Hit 2: [-39.9993, -127.67, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -106.817, 22] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -102.646, 21] + [ ecalVeto ] 0 : Hit 2: [-37.5914, -98.4754, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -90.1341, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4103.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1459 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5056.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1460 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5245.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1461 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 81.7928, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [102.606, 94.3048, 9] + [ ecalVeto ] 0 : Hit 1: [102.606, 94.3048, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 8: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5988.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1462 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 90.1341, 19] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 94.3048, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 8.34132, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 58.3892, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 54.2186, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6006.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1463 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1463 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3227.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1464 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [24.0793, -50.0479, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8651.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1465 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 18 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3239.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1466 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 13] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 14] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 12] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 8: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 9: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5051.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1467 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -90.1341, 5] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -94.3048, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4905.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1468 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -25.024, 18] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [55.3824, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [52.9745, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6558.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1469 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, 37.5359, 20] + [ ecalVeto ] 0 : Hit 1: [52.9745, 41.7066, 19] + [ ecalVeto ] 0 : Hit 2: [55.3824, 37.5359, 18] + [ ecalVeto ] 0 : Hit 3: [52.9745, 33.3653, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2127.5; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1470 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7313.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1471 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, 186.059, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, 181.889, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [24.0793, 25.024, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4527.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1472 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -152.694, 33] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -148.523, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -94.3048, 27] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -90.1341, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -73.4515, 25] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -69.2808, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 102.646, 25] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 106.817, 24] + [ ecalVeto ] 0 : Hit 2: [-3.88031, 106.817, 25] + [ ecalVeto ] 0 : Hit 3: [-3.88031, 106.817, 23] + [ ecalVeto ] 0 : Hit 4: [-1.47238, 110.987, 22] + [ ecalVeto ] 0 : Hit 5: [-3.88031, 115.158, 21] + [ ecalVeto ] 0 : Hit 6: [-3.88031, 115.158, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [52.9745, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [55.3824, -20.8533, 16] + [ ecalVeto ] 0 : Hit 2: [55.3824, -20.8533, 14] + [ ecalVeto ] 0 : Hit 3: [52.9745, -16.6826, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 66.7306, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 62.5599, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4227.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1473 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-15.92, 102.646, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3333.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1474 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, -123.499, 21] + [ ecalVeto ] 0 : Hit 1: [-145.948, -119.329, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, -106.817, 19] + [ ecalVeto ] 0 : Hit 1: [-131.501, -102.646, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4755.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1475 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 0] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4022.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1476 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -45.8773, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -50.0479, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, -45.8773, 12] + [ ecalVeto ] 0 : Hit 4: [24.0793, -50.0479, 11] + [ ecalVeto ] 0 : Hit 5: [26.4873, -45.8773, 10] + [ ecalVeto ] 0 : Hit 6: [24.0793, -50.0479, 9] + [ ecalVeto ] 0 : Hit 7: [26.4873, -54.2186, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6286.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1477 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -169.377, 33] + [ ecalVeto ] 0 : Hit 1: [-52.039, -165.206, 32] + [ ecalVeto ] 0 : Hit 2: [-54.4469, -161.035, 31] + [ ecalVeto ] 0 : Hit 3: [-52.039, -156.865, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -156.865, 33] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -161.035, 32] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1861.75; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1478 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 22] + [ ecalVeto ] 0 : Hit 2: [2.40793, -54.2186, 21] + [ ecalVeto ] 0 : Hit 3: [4.81586, -50.0479, 20] + [ ecalVeto ] 0 : Hit 4: [2.40793, -45.8773, 19] + [ ecalVeto ] 0 : Hit 5: [4.81586, -41.7066, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 10: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 11: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2291.13; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1479 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [77.0538, 41.7066, 24] + [ ecalVeto ] 0 : Hit 1: [74.6459, 45.8773, 23] + [ ecalVeto ] 0 : Hit 2: [77.0538, 41.7066, 22] + [ ecalVeto ] 0 : Hit 3: [74.6459, 45.8773, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 14] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -62.5599, 13] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -58.3892, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -102.646, 3] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -98.4754, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7416.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1480 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, -4.17066, 30] + [ ecalVeto ] 0 : Hit 1: [52.9745, -8.34132, 29] + [ ecalVeto ] 0 : Hit 2: [55.3824, -4.17066, 28] + [ ecalVeto ] 0 : Hit 3: [52.9745, -8.34132, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [45.7507, -12.512, 27] + [ ecalVeto ] 0 : Hit 1: [48.1586, -8.34132, 26] + [ ecalVeto ] 0 : Hit 2: [45.7507, -12.512, 25] + [ ecalVeto ] 0 : Hit 3: [45.7507, -12.512, 23] + [ ecalVeto ] 0 : Hit 4: [45.7507, -12.512, 21] + [ ecalVeto ] 0 : Hit 5: [45.7507, -12.512, 19] + [ ecalVeto ] 0 : Hit 6: [48.1586, -16.6826, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, -16.6826, 27] + [ ecalVeto ] 0 : Hit 1: [40.9348, -12.512, 26] + [ ecalVeto ] 0 : Hit 2: [40.9348, -12.512, 24] + [ ecalVeto ] 0 : Hit 3: [40.9348, -12.512, 22] + [ ecalVeto ] 0 : Hit 4: [40.9348, -12.512, 20] + [ ecalVeto ] 0 : Hit 5: [38.5269, -16.6826, 19] + [ ecalVeto ] 0 : Hit 6: [40.9348, -12.512, 18] + [ ecalVeto ] 0 : Hit 7: [38.5269, -16.6826, 17] + [ ecalVeto ] 0 : Hit 8: [40.9348, -20.8533, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2275.15; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1481 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 54.2186, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 50.0479, 9] + [ ecalVeto ] 0 : Hit 4: [26.4873, 45.8773, 8] + [ ecalVeto ] 0 : Hit 5: [24.0793, 50.0479, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, 37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 8: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 9: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 58.3892, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 54.2186, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, 58.3892, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 58.3892, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 62.5599, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7082.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1482 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -81.7928, 27] + [ ecalVeto ] 0 : Hit 1: [-102.606, -77.6221, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -69.2808, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -65.1101, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3773.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1483 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -29.1946, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 29.1946, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 50.0479, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4564.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1484 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, 33.3653, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-87.2224, 29.1946, 20] + [ ecalVeto ] 0 : Hit 1: [-89.6303, 33.3653, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3930.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1485 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 22] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6205.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1486 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -87.5839, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, -83.4132, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, -87.5839, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, -83.4132, 14] + [ ecalVeto ] 0 : Hit 4: [2.40793, -79.2426, 13] + [ ecalVeto ] 0 : Hit 5: [4.81586, -83.4132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -70.9012, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -66.7306, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -62.5599, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -58.3892, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -54.2186, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -58.3892, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -70.9012, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -75.0719, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [52.039, 81.7928, 1] + [ ecalVeto ] 0 : Hit 1: [54.4469, 85.9634, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -83.4132, 1] + [ ecalVeto ] 0 : Hit 1: [12.0397, -87.5839, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4214.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1487 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, 106.817, 21] + [ ecalVeto ] 0 : Hit 1: [11.1041, 102.646, 20] + [ ecalVeto ] 0 : Hit 2: [8.69618, 98.4754, 19] + [ ecalVeto ] 0 : Hit 3: [11.1041, 94.3048, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-248.554, 33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-246.146, 29.1946, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-234.106, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-231.698, 20.8533, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 650.741; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1488 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2374.43; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1489 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 21 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2908.68; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1490 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 106.817, 25] + [ ecalVeto ] 0 : Hit 1: [-102.606, 102.646, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 90.1341, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 77.6221, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -181.889, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -177.718, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 58.3892, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8538.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1491 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -41.7066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3551.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1492 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, 20.8533, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, 16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, 12.512, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4431.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1493 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, -62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [31.3031, -62.5599, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [26.4873, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5248.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1494 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5197.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1495 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 16 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1915.74; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1496 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 20] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 19] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 18] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -29.1946, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5983.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1497 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6537.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1498 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 22] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 21] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 20] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-8.69618, -98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [-11.1041, -94.3048, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [155.58, 110.987, 18] + [ ecalVeto ] 0 : Hit 1: [153.172, 106.817, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 16] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 15] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 9: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [33.711, 66.7306, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, 62.5599, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4146.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1499 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 45.8773, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6774.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1500 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1500 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3888.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1501 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -12.512, 14] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -16.6826, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 10: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 11: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5722.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1502 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 13] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5465.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1503 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [45.7507, 54.2186, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3725.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1504 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, -62.5599, 7] + [ ecalVeto ] 0 : Hit 2: [33.711, -58.3892, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7286.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1505 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, -173.547, 22] + [ ecalVeto ] 0 : Hit 1: [44.8152, -169.377, 21] + [ ecalVeto ] 0 : Hit 2: [47.2231, -165.206, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, -144.353, 16] + [ ecalVeto ] 0 : Hit 1: [23.1438, -140.182, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6280.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1506 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1506 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -119.329, 13] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -115.158, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -94.3048, 11] + [ ecalVeto ] 0 : Hit 1: [-52.039, -90.1341, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5926.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1507 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -106.817, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -102.646, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5532.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1508 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-155.58, -119.329, 31] + [ ecalVeto ] 0 : Hit 1: [-153.172, -115.158, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -81.7928, 25] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -77.6221, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -45.8773, 17] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -41.7066, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [-33.711, -33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -29.1946, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6081.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1509 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-219.659, -66.7306, 1] + [ ecalVeto ] 0 : Hit 1: [-217.251, -62.5599, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2745.82; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1510 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -75.0719, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -70.9012, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -66.7306, 15] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -66.7306, 13] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -62.5599, 12] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Hit 10: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 11: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 12: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [9.63173, -66.7306, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -62.5599, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -58.3892, 9] + [ ecalVeto ] 0 : Hit 4: [9.63173, -58.3892, 7] + [ ecalVeto ] 0 : Hit 5: [2.40793, -62.5599, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, -58.3892, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, -54.2186, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -66.7306, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -62.5599, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -58.3892, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -54.2186, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8808.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1511 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6580.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1512 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4712.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1513 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 10: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 11: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 12: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Hit 13: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Hit 14: [-12.0397, -29.1946, 1] + [ ecalVeto ] 0 : Hit 15: [-9.63173, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2610.05; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1514 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 79.2426, 23] + [ ecalVeto ] 0 : Hit 1: [19.2635, 75.0719, 22] + [ ecalVeto ] 0 : Hit 2: [16.8555, 70.9012, 21] + [ ecalVeto ] 0 : Hit 3: [19.2635, 66.7306, 20] + [ ecalVeto ] 0 : Hit 4: [16.8555, 62.5599, 19] + [ ecalVeto ] 0 : Hit 5: [19.2635, 58.3892, 18] + [ ecalVeto ] 0 : Hit 6: [16.8555, 54.2186, 17] + [ ecalVeto ] 0 : Hit 7: [19.2635, 50.0479, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, -66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [-159.46, -62.5599, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-137.789, -58.3892, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-116.118, -54.2186, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5706.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1515 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-69.83, -20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [66.4865, 131.841, 7] + [ ecalVeto ] 0 : Hit 1: [68.8945, 127.67, 6] + [ ecalVeto ] 0 : Hit 2: [66.4865, 123.499, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [55.3824, 54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [52.9745, 50.0479, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4505.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1516 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -62.5599, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -58.3892, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -94.3048, 9] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -98.4754, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -77.6221, 8] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -73.4515, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7968.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1517 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 17] + [ ecalVeto ] 0 : Hit 4: [19.2635, -16.6826, 16] + [ ecalVeto ] 0 : Hit 5: [16.8555, -20.8533, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5187.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1518 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, 25.024, 12] + [ ecalVeto ] 0 : Hit 5: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 6: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 7: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5484.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1519 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, 181.889, 25] + [ ecalVeto ] 0 : Hit 1: [11.1041, 186.059, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4420.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1520 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, 81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-131.501, 77.6221, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 41.7066, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3513.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1521 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 16] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 58.3892, 15] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 54.2186, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3703.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1522 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 25.024, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 25.024, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, 20.8533, 11] + [ ecalVeto ] 0 : Hit 4: [33.711, 16.6826, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 109 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6792.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1523 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [40.9348, 54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [38.5269, 50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [40.9348, 45.8773, 10] + [ ecalVeto ] 0 : Hit 4: [38.5269, 50.0479, 9] + [ ecalVeto ] 0 : Hit 5: [40.9348, 45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1905.68; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1524 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5135.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1525 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 37.5359, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 112 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5658.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1526 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4567.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1527 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, 20.8533, 29] + [ ecalVeto ] 0 : Hit 1: [-181.132, 16.6826, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 25.024, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 25.024, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 2: [31.3031, 4.17066, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 25.024, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4199.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1528 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4549.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1529 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1370.88; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1530 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 177.718, 25] + [ ecalVeto ] 0 : Hit 1: [-109.829, 181.889, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, 181.889, 25] + [ ecalVeto ] 0 : Hit 1: [-117.053, 186.059, 24] + [ ecalVeto ] 0 : Hit 2: [-119.461, 181.889, 23] + [ ecalVeto ] 0 : Hit 3: [-117.053, 177.718, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, 165.206, 23] + [ ecalVeto ] 0 : Hit 1: [-102.606, 169.377, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-88.1579, 169.377, 22] + [ ecalVeto ] 0 : Hit 1: [-90.5659, 165.206, 21] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 156.865, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 152.694, 20] + [ ecalVeto ] 0 : Hit 2: [-83.3421, 152.694, 21] + [ ecalVeto ] 0 : Hit 3: [-80.9341, 156.865, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3986.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1531 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -65.1101, 13] + [ ecalVeto ] 0 : Hit 1: [-102.606, -69.2808, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7723.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1532 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.039, 115.158, 23] + [ ecalVeto ] 0 : Hit 1: [54.4469, 110.987, 22] + [ ecalVeto ] 0 : Hit 2: [52.039, 106.817, 21] + [ ecalVeto ] 0 : Hit 3: [54.4469, 102.646, 20] + [ ecalVeto ] 0 : Hit 4: [52.039, 98.4754, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 58.3892, 22] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 21] + [ ecalVeto ] 0 : Hit 2: [19.2635, 50.0479, 20] + [ ecalVeto ] 0 : Hit 3: [16.8555, 54.2186, 19] + [ ecalVeto ] 0 : Hit 4: [19.2635, 58.3892, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, 16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [40.9348, 20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [40.9348, 20.8533, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [33.711, 16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [31.3031, 12.512, 11] + [ ecalVeto ] 0 : Hit 3: [33.711, 8.34132, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5873.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1533 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -2.36672e-14, 1] + [ ecalVeto ] 0 : Hit 1: [-116.118, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6036.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1534 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4781.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1535 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, -83.4132, 27] + [ ecalVeto ] 0 : Hit 1: [-145.013, -79.2426, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, -75.0719, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, -70.9012, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -58.3892, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, -62.5599, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -66.7306, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -70.9012, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5066.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1536 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 127.67, 15] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 131.841, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5005.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1537 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 50.0479, 26] + [ ecalVeto ] 0 : Hit 1: [31.3031, 45.8773, 25] + [ ecalVeto ] 0 : Hit 2: [33.711, 41.7066, 24] + [ ecalVeto ] 0 : Hit 3: [31.3031, 37.5359, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 21] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 20] + [ ecalVeto ] 0 : Hit 3: [24.0793, 25.024, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3834.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1538 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-66.4865, 98.4754, 14] + [ ecalVeto ] 0 : Hit 1: [-68.8945, 94.3048, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5157.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1539 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5668.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1540 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4811.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1541 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1541 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3937.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1542 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5425.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1543 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 102.646, 17] + [ ecalVeto ] 0 : Hit 1: [-52.039, 98.4754, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, 37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [55.3824, 37.5359, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 54.2186, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-40.9348, -12.512, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5846.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1544 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6348.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1545 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4295.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1546 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6821.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1547 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.039, -131.841, 28] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -127.67, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -119.329, 26] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -115.158, 25] + [ ecalVeto ] 0 : Hit 2: [-59.2627, -110.987, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 8: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 9: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4585.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1548 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, -110.987, 25] + [ ecalVeto ] 0 : Hit 1: [32.7755, -106.817, 24] + [ ecalVeto ] 0 : Hit 2: [32.7755, -106.817, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -87.5839, 23] + [ ecalVeto ] 0 : Hit 1: [18.3279, -90.1341, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1918.49; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1549 Brem photon produced 76 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5660.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1550 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1550 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [23.1438, -106.817, 13] + [ ecalVeto ] 0 : Hit 1: [25.5517, -110.987, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5830.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1551 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [148.356, -98.4754, 28] + [ ecalVeto ] 0 : Hit 1: [145.948, -94.3048, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [141.132, -85.9634, 26] + [ ecalVeto ] 0 : Hit 1: [138.725, -81.7928, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [119.461, -81.7928, 22] + [ ecalVeto ] 0 : Hit 1: [117.053, -77.6221, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3498.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1552 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7087.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1553 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3770.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1554 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-69.83, 29.1946, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5558.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1555 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4872.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1556 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5623.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1557 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, 29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [45.7507, 29.1946, 19] + [ ecalVeto ] 0 : Hit 2: [48.1586, 25.024, 18] + [ ecalVeto ] 0 : Hit 3: [45.7507, 20.8533, 17] + [ ecalVeto ] 0 : Hit 4: [48.1586, 16.6826, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 20] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 19] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 18] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 17] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 16] + [ ecalVeto ] 0 : Hit 6: [9.63173, -16.6826, 15] + [ ecalVeto ] 0 : Hit 7: [12.0397, -12.512, 14] + [ ecalVeto ] 0 : Hit 8: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 9: [12.0397, -12.512, 12] + [ ecalVeto ] 0 : Hit 10: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 11: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 12: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 13: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 14: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [48.1586, 8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [45.7507, 4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [48.1586, 8.34132, 14] + [ ecalVeto ] 0 : Hit 3: [45.7507, 4.17066, 13] + [ ecalVeto ] 0 : Hit 4: [38.5269, 8.34132, 15] + [ ecalVeto ] 0 : Hit 5: [40.9348, 4.17066, 14] + [ ecalVeto ] 0 : Hit 6: [40.9348, 4.17066, 12] + [ ecalVeto ] 0 : Hit 7: [38.5269, -2.66454e-15, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5008.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1558 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, -131.841, 22] + [ ecalVeto ] 0 : Hit 1: [15.92, -127.67, 21] + [ ecalVeto ] 0 : Hit 2: [18.3279, -123.499, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [66.4865, 65.1101, 15] + [ ecalVeto ] 0 : Hit 1: [68.8945, 69.2808, 14] + [ ecalVeto ] 0 : Hit 2: [66.4865, 73.4515, 13] + [ ecalVeto ] 0 : Hit 3: [68.8945, 69.2808, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, 62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [38.5269, 58.3892, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5879.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1559 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5417.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1560 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, -131.841, 22] + [ ecalVeto ] 0 : Hit 1: [30.3676, -127.67, 21] + [ ecalVeto ] 0 : Hit 2: [32.7755, -123.499, 20] + [ ecalVeto ] 0 : Hit 3: [30.3676, -119.329, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, -110.987, 18] + [ ecalVeto ] 0 : Hit 1: [23.1438, -106.817, 17] + [ ecalVeto ] 0 : Hit 2: [25.5517, -102.646, 16] + [ ecalVeto ] 0 : Hit 3: [23.1438, -98.4754, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [18.3279, -90.1341, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -87.5839, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -83.4132, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -79.2426, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-116.118, 37.5359, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -66.7306, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -62.5599, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -58.3892, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7667.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1561 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1561 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1743.39; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1562 Brem photon produced 75 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3818.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1563 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-234.106, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-231.698, -20.8533, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-226.882, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-224.475, -25.024, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6288.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1564 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [141.132, 102.646, 14] + [ ecalVeto ] 0 : Hit 1: [138.725, 98.4754, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7827.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1565 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [145.013, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [147.421, 8.34132, 18] + [ ecalVeto ] 0 : Hit 2: [145.013, 4.17066, 17] + [ ecalVeto ] 0 : Hit 3: [145.013, 4.17066, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6259.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1566 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, 156.865, 30] + [ ecalVeto ] 0 : Hit 1: [15.92, 152.694, 29] + [ ecalVeto ] 0 : Hit 2: [18.3279, 148.523, 28] + [ ecalVeto ] 0 : Hit 3: [15.92, 144.353, 27] + [ ecalVeto ] 0 : Hit 4: [18.3279, 140.182, 26] + [ ecalVeto ] 0 : Hit 5: [15.92, 136.011, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-3.88031, 165.206, 29] + [ ecalVeto ] 0 : Hit 1: [-1.47238, 161.035, 28] + [ ecalVeto ] 0 : Hit 2: [-3.88031, 156.865, 27] + [ ecalVeto ] 0 : Hit 3: [-1.47238, 152.694, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-1.47238, 136.011, 24] + [ ecalVeto ] 0 : Hit 1: [-3.88031, 131.841, 23] + [ ecalVeto ] 0 : Hit 2: [-1.47238, 127.67, 22] + [ ecalVeto ] 0 : Hit 3: [-3.88031, 123.499, 21] + [ ecalVeto ] 0 : Hit 4: [-1.47238, 119.329, 20] + [ ecalVeto ] 0 : Hit 5: [-3.88031, 115.158, 19] + [ ecalVeto ] 0 : Hit 6: [-1.47238, 110.987, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 75.0719, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 70.9012, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 66.7306, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 62.5599, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2454.27; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1567 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, 140.182, 23] + [ ecalVeto ] 0 : Hit 1: [11.1041, 136.011, 22] + [ ecalVeto ] 0 : Hit 2: [8.69618, 131.841, 21] + [ ecalVeto ] 0 : Hit 3: [11.1041, 127.67, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -20.8533, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4423.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1568 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [89.0935, 29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [89.6303, 33.3653, 20] + [ ecalVeto ] 0 : Hit 2: [89.0935, 29.1946, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-219.659, 41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-217.251, 45.8773, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-212.435, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-210.027, 50.0479, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-197.987, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-195.579, 58.3892, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-190.763, 66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-188.356, 70.9012, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 66.7306, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 62.5599, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4816.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1569 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8239.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1570 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2907.37; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1571 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, 140.182, 22] + [ ecalVeto ] 0 : Hit 1: [59.2627, 136.011, 21] + [ ecalVeto ] 0 : Hit 2: [61.6707, 131.841, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Hit 7: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3845.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1572 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Hit 10: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2454.16; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1573 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1573 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-124.277, -81.7928, 24] + [ ecalVeto ] 0 : Hit 1: [-124.277, -81.7928, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5323.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1574 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5116.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1575 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [60.1983, 45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [62.6062, 41.7066, 18] + [ ecalVeto ] 0 : Hit 2: [60.1983, 37.5359, 17] + [ ecalVeto ] 0 : Hit 3: [62.6062, 33.3653, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [45.7507, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [48.1586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 2: [45.7507, -4.17066, 13] + [ ecalVeto ] 0 : Hit 3: [48.1586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4843.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1576 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3591.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1577 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [123.341, -41.7066, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4685.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1578 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 14] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 9: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 10: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 11: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 12: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 13: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 14: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 15: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 16: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Hit 17: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4030.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1579 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [119.461, 98.4754, 26] + [ ecalVeto ] 0 : Hit 1: [117.053, 94.3048, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -102.646, 18] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -98.4754, 17] + [ ecalVeto ] 0 : Hit 2: [-73.7103, -94.3048, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -58.3892, 6] + [ ecalVeto ] 0 : Hit 4: [-40.9348, -54.2186, 5] + [ ecalVeto ] 0 : Hit 5: [-33.711, -50.0479, 7] + [ ecalVeto ] 0 : Hit 6: [-31.3031, -45.8773, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -66.7306, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -62.5599, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -45.8773, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4111.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1580 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, -20.8533, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7645.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1581 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 13] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 7: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 8: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 9: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [26.4873, -20.8533, 10] + [ ecalVeto ] 0 : Hit 5: [24.0793, -16.6826, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6092.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1582 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5639.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1583 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5813.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1584 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 33.3653, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 37.5359, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5435.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1585 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6219.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1586 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6673.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1587 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -25.024, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 118 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5885.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1588 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 102.646, 18] + [ ecalVeto ] 0 : Hit 1: [66.4865, 98.4754, 17] + [ ecalVeto ] 0 : Hit 2: [68.8945, 102.646, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [59.2627, 102.646, 17] + [ ecalVeto ] 0 : Hit 1: [61.6707, 106.817, 16] + [ ecalVeto ] 0 : Hit 2: [59.2627, 102.646, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [54.4469, 102.646, 14] + [ ecalVeto ] 0 : Hit 1: [52.039, 106.817, 13] + [ ecalVeto ] 0 : Hit 2: [54.4469, 102.646, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -106.817, 7] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -106.817, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5237.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1589 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-205.211, 33.3653, 29] + [ ecalVeto ] 0 : Hit 1: [-202.803, 37.5359, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, 41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-145.013, 37.5359, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, 41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, 37.5359, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 81.7928, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-118.525, 41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 37.5359, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-104.078, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 37.5359, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 90.1341, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 73.4515, 16] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 69.2808, 15] + [ ecalVeto ] 0 : Hit 2: [-80.9341, 65.1101, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 58.3892, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-33.711, 41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-33.711, 41.7066, 3] + [ ecalVeto ] 0 : Hit 4: [-31.3031, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3625.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1590 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [15.92, -110.987, 25] + [ ecalVeto ] 0 : Hit 1: [18.3279, -106.817, 24] + [ ecalVeto ] 0 : Hit 2: [15.92, -102.646, 23] + [ ecalVeto ] 0 : Hit 3: [18.3279, -98.4754, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -87.5839, 20] + [ ecalVeto ] 0 : Hit 1: [9.63173, -83.4132, 19] + [ ecalVeto ] 0 : Hit 2: [12.0397, -79.2426, 18] + [ ecalVeto ] 0 : Hit 3: [9.63173, -75.0719, 17] + [ ecalVeto ] 0 : Hit 4: [12.0397, -70.9012, 16] + [ ecalVeto ] 0 : Hit 5: [9.63173, -66.7306, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -62.5599, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -58.3892, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -54.2186, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, -50.0479, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -54.2186, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 3] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -69.2808, 1] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -65.1101, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4007.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1591 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, 16.6826, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -8.34132, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -54.2186, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [24.0793, -41.7066, 5] + [ ecalVeto ] 0 : Hit 4: [26.4873, -37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [24.0793, -41.7066, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5208.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1592 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6739.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1593 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, 20.8533, 22] + [ ecalVeto ] 0 : Hit 1: [123.341, 25.024, 21] + [ ecalVeto ] 0 : Hit 2: [125.749, 29.1946, 20] + [ ecalVeto ] 0 : Hit 3: [123.341, 33.3653, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4831.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1594 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4381.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1595 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 14 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 119.329, 27] + [ ecalVeto ] 0 : Hit 1: [-138.725, 115.158, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, 115.158, 25] + [ ecalVeto ] 0 : Hit 1: [-131.501, 110.987, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-119.461, 115.158, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, 110.987, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 102.646, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 106.817, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 18] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -62.5599, 17] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -58.3892, 16] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -54.2186, 15] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -50.0479, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 94.3048, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 90.1341, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 85.9634, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [24.0793, 83.4132, 13] + [ ecalVeto ] 0 : Hit 1: [24.0793, 83.4132, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 79.2426, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 12] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [25.5517, 110.987, 12] + [ ecalVeto ] 0 : Hit 1: [23.1438, 106.817, 11] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [39.9993, 94.3048, 12] + [ ecalVeto ] 0 : Hit 1: [37.5914, 90.1341, 11] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 10] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 14 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5121.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1596 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3067.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1597 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1351.01; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1598 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, 102.646, 22] + [ ecalVeto ] 0 : Hit 1: [37.5914, 98.4754, 21] + [ ecalVeto ] 0 : Hit 2: [39.9993, 94.3048, 20] + [ ecalVeto ] 0 : Hit 3: [37.5914, 90.1341, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [26.4873, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [26.4873, 37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [24.0793, 33.3653, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -20.8533, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 114 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6560.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1599 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.039, -73.4515, 8] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -69.2808, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2580.61; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1600 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -33.3653, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -41.7066, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 3] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 2] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4620.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1601 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -77.6221, 28] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -73.4515, 27] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -70.9012, 26] + [ ecalVeto ] 0 : Hit 3: [-48.1586, -66.7306, 25] + [ ecalVeto ] 0 : Hit 4: [-45.7507, -62.5599, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 12: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -12.512, 11] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -16.6826, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6570.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1602 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5155.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1603 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [40.9348, 62.5599, 16] + [ ecalVeto ] 0 : Hit 2: [38.5269, 66.7306, 15] + [ ecalVeto ] 0 : Hit 3: [40.9348, 62.5599, 14] + [ ecalVeto ] 0 : Hit 4: [38.5269, 58.3892, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [-33.711, -33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -29.1946, 14] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -29.1946, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -29.1946, 13] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -25.024, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4560.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1604 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [141.132, 102.646, 2] + [ ecalVeto ] 0 : Hit 1: [138.725, 98.4754, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6707.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1605 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 2: [31.3031, -4.17066, 15] + [ ecalVeto ] 0 : Hit 3: [33.711, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5679.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1606 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6755.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1607 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, 25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-173.908, 29.1946, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-137.789, 25.024, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-101.67, 29.1946, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1796.49; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1608 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4401.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1609 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3012.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1610 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, 33.3653, 27] + [ ecalVeto ] 0 : Hit 1: [69.83, 37.5359, 26] + [ ecalVeto ] 0 : Hit 2: [67.4221, 33.3653, 25] + [ ecalVeto ] 0 : Hit 3: [69.83, 37.5359, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, 25.024, 18] + [ ecalVeto ] 0 : Hit 1: [45.7507, 20.8533, 17] + [ ecalVeto ] 0 : Hit 2: [48.1586, 16.6826, 16] + [ ecalVeto ] 0 : Hit 3: [45.7507, 20.8533, 15] + [ ecalVeto ] 0 : Hit 4: [40.9348, 20.8533, 16] + [ ecalVeto ] 0 : Hit 5: [38.5269, 16.6826, 15] + [ ecalVeto ] 0 : Hit 6: [40.9348, 12.512, 14] + [ ecalVeto ] 0 : Hit 7: [40.9348, 12.512, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, 12.512, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5573.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1611 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2055.2; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1612 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 25.024, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7060.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1613 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 65.1101, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [24.0793, 25.024, 7] + [ ecalVeto ] 0 : Hit 5: [24.0793, 25.024, 5] + [ ecalVeto ] 0 : Hit 6: [26.4873, 29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [26.4873, 29.1946, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3474.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1614 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6051.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1615 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -94.3048, 15] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -90.1341, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5025.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1616 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [117.053, -136.011, 23] + [ ecalVeto ] 0 : Hit 1: [119.461, -131.841, 22] + [ ecalVeto ] 0 : Hit 2: [117.053, -127.67, 21] + [ ecalVeto ] 0 : Hit 3: [119.461, -123.499, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6882.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1617 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 33.3653, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4515.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1618 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4664.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1619 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [62.6062, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [60.1983, -20.8533, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [74.6459, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [74.6459, 12.512, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [33.711, -16.6826, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Hit 5: [26.4873, -20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [24.0793, -25.024, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6856.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1620 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5816.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1621 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5926.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1622 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -110.987, 24] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -106.817, 23] + [ ecalVeto ] 0 : Hit 2: [-37.5914, -106.817, 24] + [ ecalVeto ] 0 : Hit 3: [-39.9993, -102.646, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -148.523, 23] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -152.694, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -85.9634, 22] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -81.7928, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2955.25; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1623 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -25.024, 14] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -20.8533, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-116.118, 29.1946, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [38.5269, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [40.9348, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [38.5269, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [38.5269, 8.34132, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 45.8773, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 33.3653, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6026.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1624 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [133.909, -90.1341, 32] + [ ecalVeto ] 0 : Hit 1: [131.501, -85.9634, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, -144.353, 17] + [ ecalVeto ] 0 : Hit 1: [-109.829, -140.182, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-95.3817, -131.841, 16] + [ ecalVeto ] 0 : Hit 1: [-97.7897, -136.011, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [62.6062, -33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [60.1983, -29.1946, 15] + [ ecalVeto ] 0 : Hit 2: [62.6062, -33.3653, 14] + [ ecalVeto ] 0 : Hit 3: [60.1983, -29.1946, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3027.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1625 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 8.34132, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3928.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1626 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -106.817, 9] + [ ecalVeto ] 0 : Hit 1: [-15.92, -110.987, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4689.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1627 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 17 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2883.8; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1628 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -85.9634, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -65.1101, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -62.5599, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -54.2186, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4407.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1629 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4471.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1630 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [60.1983, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [60.1983, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [62.6062, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5488.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1631 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 18] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 50.0479, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 54.2186, 15] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 50.0479, 14] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 45.8773, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, 41.7066, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3987.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1632 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3022.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1633 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4361.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1634 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 115.158, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 110.987, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 90.1341, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 77.6221, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4599.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1635 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -119.329, 25] + [ ecalVeto ] 0 : Hit 1: [-68.8945, -119.329, 23] + [ ecalVeto ] 0 : Hit 2: [-66.4865, -115.158, 22] + [ ecalVeto ] 0 : Hit 3: [-68.8945, -110.987, 21] + [ ecalVeto ] 0 : Hit 4: [-66.4865, -106.817, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -102.646, 19] + [ ecalVeto ] 0 : Hit 1: [-52.039, -98.4754, 18] + [ ecalVeto ] 0 : Hit 2: [-54.4469, -94.3048, 17] + [ ecalVeto ] 0 : Hit 3: [-52.039, -90.1341, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -66.7306, 11] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -62.5599, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5115.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1636 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, -136.011, 30] + [ ecalVeto ] 0 : Hit 1: [66.4865, -131.841, 29] + [ ecalVeto ] 0 : Hit 2: [68.8945, -127.67, 28] + [ ecalVeto ] 0 : Hit 3: [66.4865, -123.499, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [59.2627, -94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [61.6707, -90.1341, 22] + [ ecalVeto ] 0 : Hit 2: [59.2627, -85.9634, 21] + [ ecalVeto ] 0 : Hit 3: [61.6707, -81.7928, 20] + [ ecalVeto ] 0 : Hit 4: [59.2627, -77.6221, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [44.8152, -85.9634, 23] + [ ecalVeto ] 0 : Hit 1: [47.2231, -81.7928, 22] + [ ecalVeto ] 0 : Hit 2: [44.8152, -77.6221, 21] + [ ecalVeto ] 0 : Hit 3: [47.2231, -73.4515, 20] + [ ecalVeto ] 0 : Hit 4: [45.7507, -70.9012, 19] + [ ecalVeto ] 0 : Hit 5: [45.7507, -70.9012, 17] + [ ecalVeto ] 0 : Hit 6: [48.1586, -66.7306, 16] + [ ecalVeto ] 0 : Hit 7: [45.7507, -62.5599, 15] + [ ecalVeto ] 0 : Hit 8: [52.9745, -58.3892, 17] + [ ecalVeto ] 0 : Hit 9: [55.3824, -54.2186, 16] + [ ecalVeto ] 0 : Hit 10: [52.9745, -58.3892, 15] + [ ecalVeto ] 0 : Hit 11: [55.3824, -54.2186, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [38.5269, -66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [38.5269, -66.7306, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11928.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1637 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -79.2426, 25] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 24] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -70.9012, 23] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -66.7306, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -50.0479, 15] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -45.8773, 14] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -41.7066, 13] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -45.8773, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -81.7928, 7] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -85.9634, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11702.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1638 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 24] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 22] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 21] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 19] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 17] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 16] + [ ecalVeto ] 0 : Hit 8: [2.40793, 12.512, 15] + [ ecalVeto ] 0 : Hit 9: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2707.22; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1639 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [19.2635, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5779.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1640 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, 127.67, 28] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 123.499, 27] + [ ecalVeto ] 0 : Hit 2: [-15.92, 119.329, 26] + [ ecalVeto ] 0 : Hit 3: [-18.3279, 123.499, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 102.646, 23] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 98.4754, 22] + [ ecalVeto ] 0 : Hit 2: [-11.1041, 94.3048, 21] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 91.7545, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 83.4132, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 87.5839, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 75.0719, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 79.2426, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [40.9348, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [38.5269, -33.3653, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -33.3653, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [38.5269, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [40.9348, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [38.5269, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [40.9348, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4261.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1641 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5864.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1642 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 8: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7446.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1643 Brem photon produced 84 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 37.5359, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 37.5359, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6407.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1644 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-137.789, -16.6826, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 25.024, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6235.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1645 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [161.868, -41.7066, 26] + [ ecalVeto ] 0 : Hit 1: [159.46, -37.5359, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [132.973, -33.3653, 22] + [ ecalVeto ] 0 : Hit 1: [130.565, -29.1946, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 12.512, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-69.83, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [-67.4221, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [-62.6062, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-60.1983, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3730.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1646 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8000.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1647 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2392.75; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1648 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -79.2426, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -75.0719, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -70.9012, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -66.7306, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -62.5599, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 2] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5999.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1649 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 131.841, 19] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 127.67, 18] + [ ecalVeto ] 0 : Hit 2: [-61.6707, 123.499, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -75.0719, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -70.9012, 18] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -66.7306, 17] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -62.5599, 16] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -58.3892, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.039, 115.158, 16] + [ ecalVeto ] 0 : Hit 1: [-54.4469, 110.987, 15] + [ ecalVeto ] 0 : Hit 2: [-52.039, 106.817, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1144.42; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1650 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 41.7066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4452.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1651 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, -106.817, 28] + [ ecalVeto ] 0 : Hit 1: [44.8152, -102.646, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 87.5839, 21] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 83.4132, 20] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 79.2426, 19] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 75.0719, 18] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 70.9012, 17] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 66.7306, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 45.8773, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3829.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1652 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -62.5599, 2] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -58.3892, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5532.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1653 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [18.3279, 131.841, 16] + [ ecalVeto ] 0 : Hit 1: [15.92, 127.67, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -62.5599, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 58.3892, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7540.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1654 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 115.158, 18] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 110.987, 17] + [ ecalVeto ] 0 : Hit 2: [-23.1438, 106.817, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4774.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1655 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 21] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 20] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 19] + [ ecalVeto ] 0 : Hit 4: [24.0793, 8.34132, 17] + [ ecalVeto ] 0 : Hit 5: [19.2635, 8.34132, 18] + [ ecalVeto ] 0 : Hit 6: [19.2635, 8.34132, 16] + [ ecalVeto ] 0 : Hit 7: [16.8555, 12.512, 15] + [ ecalVeto ] 0 : Hit 8: [19.2635, 16.6826, 14] + [ ecalVeto ] 0 : Hit 9: [16.8555, 12.512, 13] + [ ecalVeto ] 0 : Hit 10: [19.2635, 16.6826, 12] + [ ecalVeto ] 0 : Hit 11: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4936.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1656 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3883.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1657 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, -90.1341, 17] + [ ecalVeto ] 0 : Hit 1: [-145.948, -94.3048, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, -81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-131.501, -77.6221, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [55.3824, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [52.9745, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [55.3824, 37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [52.9745, 33.3653, 11] + [ ecalVeto ] 0 : Hit 4: [55.3824, 29.1946, 10] + [ ecalVeto ] 0 : Hit 5: [52.9745, 25.024, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-33.711, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7118.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1658 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -165.206, 19] + [ ecalVeto ] 0 : Hit 1: [-117.053, -161.035, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, -152.694, 17] + [ ecalVeto ] 0 : Hit 1: [-109.829, -148.523, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -85.9634, 9] + [ ecalVeto ] 0 : Hit 1: [-52.039, -81.7928, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4585.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1659 Brem photon produced 84 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3589.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1660 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2667.26; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1661 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, 83.4132, 15] + [ ecalVeto ] 0 : Hit 1: [-145.013, 79.2426, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 75.0719, 13] + [ ecalVeto ] 0 : Hit 1: [-130.565, 70.9012, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 58.3892, 9] + [ ecalVeto ] 0 : Hit 3: [9.63173, 58.3892, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 5: [4.81586, 58.3892, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7513.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1662 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, -8.34132, 25] + [ ecalVeto ] 0 : Hit 1: [67.4221, -8.34132, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -8.34132, 24] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 23] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 22] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 21] + [ ecalVeto ] 0 : Hit 4: [33.711, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 5: [31.3031, 4.17066, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 18] + [ ecalVeto ] 0 : Hit 2: [9.63173, 50.0479, 17] + [ ecalVeto ] 0 : Hit 3: [12.0397, 54.2186, 16] + [ ecalVeto ] 0 : Hit 4: [9.63173, 50.0479, 15] + [ ecalVeto ] 0 : Hit 5: [12.0397, 45.8773, 14] + [ ecalVeto ] 0 : Hit 6: [9.63173, 41.7066, 13] + [ ecalVeto ] 0 : Hit 7: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2627.29; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1663 Brem photon produced 77 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4952.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1664 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [38.5269, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [40.9348, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4088.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1665 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 18] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 17] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 16] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 15] + [ ecalVeto ] 0 : Hit 6: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 7: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 8: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 9: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 10: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 11: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 12: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 13: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 14: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 15: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 16: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 17: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [95.3817, -73.4515, 11] + [ ecalVeto ] 0 : Hit 1: [95.3817, -73.4515, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -62.5599, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -58.3892, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -54.2186, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -50.0479, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -45.8773, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [67.4221, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [68.8945, -60.9395, 8] + [ ecalVeto ] 0 : Hit 2: [67.4221, -58.3892, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [19.2635, -58.3892, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -54.2186, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, -50.0479, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8176.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1666 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -115.158, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -119.329, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3812.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1667 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 18] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 17] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 13] + [ ecalVeto ] 0 : Hit 3: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5827.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1668 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3812.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1669 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 7: [12.0397, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4885.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1670 Brem photon produced 80 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -54.2186, 16] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -58.3892, 15] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -54.2186, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5347.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1671 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, 29.1946, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 94.3048, 7] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 98.4754, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [112.237, 69.2808, 4] + [ ecalVeto ] 0 : Hit 1: [109.829, 65.1101, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 118 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6003.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1672 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3847.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1673 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, 45.8773, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3707.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1674 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -66.7306, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, -62.5599, 21] + [ ecalVeto ] 0 : Hit 2: [33.711, -58.3892, 20] + [ ecalVeto ] 0 : Hit 3: [31.3031, -54.2186, 19] + [ ecalVeto ] 0 : Hit 4: [31.3031, -54.2186, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, -33.3653, 13] + [ ecalVeto ] 0 : Hit 4: [26.4873, -37.5359, 12] + [ ecalVeto ] 0 : Hit 5: [24.0793, -33.3653, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5370.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1675 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5406.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1676 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -173.547, 31] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -169.377, 30] + [ ecalVeto ] 0 : Hit 2: [-3.88031, -165.206, 29] + [ ecalVeto ] 0 : Hit 3: [-1.47238, -161.035, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -123.499, 23] + [ ecalVeto ] 0 : Hit 1: [-15.92, -119.329, 22] + [ ecalVeto ] 0 : Hit 2: [-18.3279, -115.158, 21] + [ ecalVeto ] 0 : Hit 3: [-15.92, -110.987, 20] + [ ecalVeto ] 0 : Hit 4: [-15.92, -110.987, 18] + [ ecalVeto ] 0 : Hit 5: [-15.92, -102.646, 20] + [ ecalVeto ] 0 : Hit 6: [-18.3279, -98.4754, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -102.646, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -91.7545, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -87.5839, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -83.4132, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -87.5839, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -83.4132, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -79.2426, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -75.0719, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4481.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1677 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-159.46, -70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [-161.868, -75.0719, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-141.132, -85.9634, 9] + [ ecalVeto ] 0 : Hit 1: [-138.725, -90.1341, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-133.909, -98.4754, 7] + [ ecalVeto ] 0 : Hit 1: [-131.501, -94.3048, 6] + [ ecalVeto ] 0 : Hit 2: [-133.909, -90.1341, 5] + [ ecalVeto ] 0 : Hit 3: [-131.501, -85.9634, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6881.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1678 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4558.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1679 Brem photon produced 70 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, 45.8773, 18] + [ ecalVeto ] 0 : Hit 1: [55.3824, 45.8773, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-74.6459, -37.5359, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 3] + [ ecalVeto ] 0 : Hit 1: [-69.83, -45.8773, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9733.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1680 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 66.7306, 29] + [ ecalVeto ] 0 : Hit 1: [-130.565, 62.5599, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 62.5599, 27] + [ ecalVeto ] 0 : Hit 1: [-123.341, 58.3892, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, 50.0479, 25] + [ ecalVeto ] 0 : Hit 1: [-116.118, 54.2186, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 41.7066, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 25.024, 13] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -58.3892, 1] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -54.2186, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3869.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1681 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5361.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1682 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -62.5599, 22] + [ ecalVeto ] 0 : Hit 1: [9.63173, -58.3892, 21] + [ ecalVeto ] 0 : Hit 2: [12.0397, -54.2186, 20] + [ ecalVeto ] 0 : Hit 3: [9.63173, -50.0479, 19] + [ ecalVeto ] 0 : Hit 4: [12.0397, -45.8773, 18] + [ ecalVeto ] 0 : Hit 5: [9.63173, -41.7066, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3827.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1683 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 25] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 24] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 23] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 22] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 21] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 20] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [68.8945, 136.011, 20] + [ ecalVeto ] 0 : Hit 1: [66.4865, 131.841, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 15] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 14] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4666.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1684 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1509.59; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1685 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7137.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1686 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3086.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1687 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 70.9012, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 70.9012, 7] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 75.0719, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6791.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1688 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7260.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1689 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, -75.0719, 25] + [ ecalVeto ] 0 : Hit 1: [-145.013, -70.9012, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3408.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1690 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, 25.024, 23] + [ ecalVeto ] 0 : Hit 1: [67.4221, 25.024, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4398.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1691 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6275.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1692 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4263.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1693 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5126.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1694 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7990.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1695 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2500.82; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1696 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [147.421, -66.7306, 22] + [ ecalVeto ] 0 : Hit 1: [145.013, -62.5599, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, 148.523, 17] + [ ecalVeto ] 0 : Hit 1: [-131.501, 144.353, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-183.54, 62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-181.132, 58.3892, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-190.763, 58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-188.356, 62.5599, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-197.987, 54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-195.579, 50.0479, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-188.356, 70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [-190.763, 75.0719, 15] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4449.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1697 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6411.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1698 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 106.817, 29] + [ ecalVeto ] 0 : Hit 1: [-102.606, 102.646, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 90.1341, 27] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 85.9634, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -70.9012, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -75.0719, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -70.9012, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, -66.7306, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4791.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1699 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-219.659, -33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-217.251, -37.5359, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2562.04; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1700 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -33.3653, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5057.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1701 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -62.5599, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, -58.3892, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, -54.2186, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, -50.0479, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, -45.8773, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, -41.7066, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, -37.5359, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -65.1101, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -60.9395, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5467.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1702 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 8: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 9: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 8: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 9: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 10: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 11: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 12: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 13: [4.81586, 8.34132, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9081.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1703 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 41.7066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-197.987, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-195.579, -2.36672e-14, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-176.316, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-176.316, -8.34132, 1] + [ ecalVeto ] 0 : Hit 2: [-183.54, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [-181.132, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5146.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1704 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 21] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 20] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 19] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 18] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 17] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 16] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 15] + [ ecalVeto ] 0 : Hit 8: [2.40793, 29.1946, 13] + [ ecalVeto ] 0 : Hit 9: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 10: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 11: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, 110.987, 18] + [ ecalVeto ] 0 : Hit 1: [23.1438, 106.817, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6203.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1705 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 66.7306, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7013.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1706 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -81.7928, 7] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -85.9634, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5869.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1707 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 102.646, 11] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 106.817, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [40.9348, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [38.5269, -41.7066, 3] + [ ecalVeto ] 0 : Hit 3: [40.9348, -45.8773, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4462.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1708 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3770.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1709 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, -62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, -58.3892, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -52.5982, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4960.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1710 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7828.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1711 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5273.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1712 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3298.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1713 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [40.9348, -62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [38.5269, -58.3892, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -12.512, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-33.711, 8.34132, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 37.5359, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6788.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1714 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [44.8152, 152.694, 33] + [ ecalVeto ] 0 : Hit 1: [47.2231, 156.865, 32] + [ ecalVeto ] 0 : Hit 2: [44.8152, 152.694, 31] + [ ecalVeto ] 0 : Hit 3: [47.2231, 148.523, 30] + [ ecalVeto ] 0 : Hit 4: [44.8152, 144.353, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [39.9993, 127.67, 26] + [ ecalVeto ] 0 : Hit 1: [37.5914, 123.499, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4061.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1715 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [118.525, -33.3653, 20] + [ ecalVeto ] 0 : Hit 1: [116.118, -29.1946, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [104.078, -25.024, 18] + [ ecalVeto ] 0 : Hit 1: [101.67, -20.8533, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [69.83, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [69.83, 4.17066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [62.6062, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [60.1983, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [62.6062, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2307.77; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1716 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5769; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1717 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 83.4132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 87.5839, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 110.987, 9] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 115.158, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6690.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1718 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, -81.7928, 28] + [ ecalVeto ] 0 : Hit 1: [102.606, -77.6221, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [83.3421, -69.2808, 24] + [ ecalVeto ] 0 : Hit 1: [80.9341, -65.1101, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-132.973, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-130.565, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3353.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1719 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-69.83, 12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-154.644, 4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [-152.237, -2.36672e-14, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6453.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1720 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-197.987, -45.8773, 33] + [ ecalVeto ] 0 : Hit 1: [-195.579, -41.7066, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-190.763, -41.7066, 31] + [ ecalVeto ] 0 : Hit 1: [-188.356, -45.8773, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-176.316, -50.0479, 29] + [ ecalVeto ] 0 : Hit 1: [-173.908, -45.8773, 28] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-161.868, -41.7066, 27] + [ ecalVeto ] 0 : Hit 1: [-159.46, -45.8773, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-147.421, -41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [-145.013, -37.5359, 24] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-104.078, -33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, -29.1946, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -20.8533, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3959.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1721 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [111.302, -29.1946, 22] + [ ecalVeto ] 0 : Hit 1: [108.894, -33.3653, 21] + [ ecalVeto ] 0 : Hit 2: [111.302, -29.1946, 20] + [ ecalVeto ] 0 : Hit 3: [108.894, -33.3653, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [26.4873, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [24.0793, -25.024, 3] + [ ecalVeto ] 0 : Hit 5: [26.4873, -29.1946, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6208.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1722 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 7 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 628.094; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1723 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 24] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 23] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 20] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 18] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 18] + [ ecalVeto ] 0 : Hit 2: [24.0793, 16.6826, 17] + [ ecalVeto ] 0 : Hit 3: [26.4873, 20.8533, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 79.2426, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, 75.0719, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, 70.9012, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, 66.7306, 15] + [ ecalVeto ] 0 : Hit 4: [12.0397, 62.5599, 14] + [ ecalVeto ] 0 : Hit 5: [9.63173, 58.3892, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3207.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1724 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [205.211, -16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [202.803, -12.512, 17] + [ ecalVeto ] 0 : Hit 2: [197.987, -12.512, 18] + [ ecalVeto ] 0 : Hit 3: [195.579, -8.34132, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6331.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1725 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3455.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1726 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-219.659, -33.3653, 31] + [ ecalVeto ] 0 : Hit 1: [-217.251, -29.1946, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-197.987, -37.5359, 27] + [ ecalVeto ] 0 : Hit 1: [-195.579, -41.7066, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-183.54, -54.2186, 25] + [ ecalVeto ] 0 : Hit 1: [-181.132, -58.3892, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-169.092, -62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-166.684, -66.7306, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-161.868, -66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [-159.46, -70.9012, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-154.644, -79.2426, 19] + [ ecalVeto ] 0 : Hit 1: [-152.237, -75.0719, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6474.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1727 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -152.694, 21] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -148.523, 20] + [ ecalVeto ] 0 : Hit 2: [-8.69618, -148.523, 18] + [ ecalVeto ] 0 : Hit 3: [-15.92, -152.694, 20] + [ ecalVeto ] 0 : Hit 4: [-18.3279, -148.523, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [96.8541, 4.17066, 18] + [ ecalVeto ] 0 : Hit 1: [94.4462, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 2: [96.8541, 4.17066, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -75.0719, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -70.9012, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6178.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1728 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, -123.499, 24] + [ ecalVeto ] 0 : Hit 1: [30.3676, -119.329, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, -110.987, 22] + [ ecalVeto ] 0 : Hit 1: [23.1438, -106.817, 21] + [ ecalVeto ] 0 : Hit 2: [25.5517, -102.646, 20] + [ ecalVeto ] 0 : Hit 3: [23.1438, -98.4754, 19] + [ ecalVeto ] 0 : Hit 4: [25.5517, -94.3048, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 4.17066, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5247.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1729 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [155.58, 94.3048, 24] + [ ecalVeto ] 0 : Hit 1: [153.172, 90.1341, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3001.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1730 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-108.894, -8.34132, 18] + [ ecalVeto ] 0 : Hit 1: [-111.302, -4.17066, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-101.67, -4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [-104.078, -2.36672e-14, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -2.36672e-14, 13] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 4.17066, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5733.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1731 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [2.40793, -62.5599, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5570.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1732 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5412.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1733 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -8.34132, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2070.04; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1734 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, -33.3653, 13] + [ ecalVeto ] 0 : Hit 4: [26.4873, -29.1946, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-1.47238, -102.646, 14] + [ ecalVeto ] 0 : Hit 1: [-3.88031, -98.4754, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -95.9252, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -91.7545, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -87.5839, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -75.0719, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -70.9012, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -66.7306, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -62.5599, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -58.3892, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -54.2186, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -50.0479, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -45.8773, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -37.5359, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-33.711, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4970.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1735 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5114.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1736 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, 98.4754, 26] + [ ecalVeto ] 0 : Hit 1: [102.606, 94.3048, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [83.3421, 69.2808, 22] + [ ecalVeto ] 0 : Hit 1: [80.9341, 65.1101, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, 54.2186, 22] + [ ecalVeto ] 0 : Hit 1: [38.5269, 50.0479, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -136.011, 20] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -131.841, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3975.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1737 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4262.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1738 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -127.67, 27] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -123.499, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -85.9634, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -58.3892, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3546.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1739 Brem photon produced 75 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [94.4462, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 1: [96.8541, 4.17066, 18] + [ ecalVeto ] 0 : Hit 2: [94.4462, 8.34132, 17] + [ ecalVeto ] 0 : Hit 3: [96.8541, 12.512, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 7: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4574.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1740 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 45.8773, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4126.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1741 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 18] + [ ecalVeto ] 0 : Hit 2: [-77.0538, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 3: [-74.6459, -4.17066, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-81.8697, -8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [-82.4065, -4.17066, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4819.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1742 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-116.118, -45.8773, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-104.078, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-101.67, -45.8773, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -41.7066, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5918.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1743 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [89.6303, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [89.0935, -12.512, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [26.4873, -20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6295.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1744 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, 181.889, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, 177.718, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 98.4754, 15] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 94.3048, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 81.7928, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 79.2426, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [19.2635, 41.7066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 66.7306, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 54.2186, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6266.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1745 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 115.158, 23] + [ ecalVeto ] 0 : Hit 1: [-102.606, 110.987, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6372.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1746 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 12] + [ ecalVeto ] 0 : Hit 5: [16.8555, 29.1946, 11] + [ ecalVeto ] 0 : Hit 6: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 7: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 8: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 9: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 10: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 11: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [45.7507, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [45.7507, 29.1946, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, 25.024, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 8: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 9: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8113.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1747 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [37.5914, 165.206, 17] + [ ecalVeto ] 0 : Hit 1: [39.9993, 169.377, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 111 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5576.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1748 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -65.1101, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -62.5599, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [88.1579, 144.353, 5] + [ ecalVeto ] 0 : Hit 1: [90.5659, 140.182, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5107.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1749 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -79.2426, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -75.0719, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -79.2426, 10] + [ ecalVeto ] 0 : Hit 3: [33.711, -75.0719, 12] + [ ecalVeto ] 0 : Hit 4: [31.3031, -70.9012, 11] + [ ecalVeto ] 0 : Hit 5: [33.711, -75.0719, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, -54.2186, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [31.3031, -54.2186, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [19.2635, -66.7306, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -62.5599, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -58.3892, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, -54.2186, 7] + [ ecalVeto ] 0 : Hit 5: [19.2635, -50.0479, 6] + [ ecalVeto ] 0 : Hit 6: [16.8555, -45.8773, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5396.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1750 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5245.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1751 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 3: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 4: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2873.24; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1752 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -102.646, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -106.817, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -65.1101, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -62.5599, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2362.23; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1753 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2964.64; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1754 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.039, -73.4515, 12] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -69.2808, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -90.1341, 9] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -85.9634, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6267.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1755 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, 152.694, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, 148.523, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2400.45; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1756 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 45.8773, 27] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 41.7066, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 33.3653, 24] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 33.3653, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3062.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1757 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, -4.17066, 28] + [ ecalVeto ] 0 : Hit 1: [123.341, -2.66454e-15, 27] + [ ecalVeto ] 0 : Hit 2: [125.749, -4.17066, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [104.078, -2.66454e-15, 26] + [ ecalVeto ] 0 : Hit 1: [104.078, -2.66454e-15, 24] + [ ecalVeto ] 0 : Hit 2: [101.67, 4.17066, 23] + [ ecalVeto ] 0 : Hit 3: [96.8541, 4.17066, 24] + [ ecalVeto ] 0 : Hit 4: [96.8541, 4.17066, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [111.302, 4.17066, 26] + [ ecalVeto ] 0 : Hit 1: [108.894, 8.34132, 25] + [ ecalVeto ] 0 : Hit 2: [111.302, 4.17066, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3613.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1758 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2487.66; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1759 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, 56.7688, 24] + [ ecalVeto ] 0 : Hit 1: [74.6459, 54.2186, 23] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5449.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1760 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [59.2627, 94.3048, 29] + [ ecalVeto ] 0 : Hit 1: [59.2627, 94.3048, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [47.2231, 73.4515, 26] + [ ecalVeto ] 0 : Hit 1: [45.7507, 70.9012, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4902.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1761 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 21 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2677.91; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1762 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -73.4515, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2600.95; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1763 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3091.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1764 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5217.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1765 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [109.829, 98.4754, 3] + [ ecalVeto ] 0 : Hit 1: [112.237, 94.3048, 2] + [ ecalVeto ] 0 : Hit 2: [109.829, 98.4754, 1] + [ ecalVeto ] 0 : Hit 3: [112.237, 94.3048, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4380.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1766 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [96.8541, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [94.4462, 16.6826, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5173.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1767 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1355.31; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1768 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 6: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 8: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 9: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5297.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1769 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-219.659, 16.6826, 27] + [ ecalVeto ] 0 : Hit 1: [-217.251, 20.8533, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-130.565, 20.8533, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 62.5599, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 58.3892, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 54.2186, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 25.024, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3234.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1770 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [130.565, 62.5599, 33] + [ ecalVeto ] 0 : Hit 1: [132.973, 58.3892, 32] + [ ecalVeto ] 0 : Hit 2: [130.565, 62.5599, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [74.6459, 20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [77.0538, 16.6826, 22] + [ ecalVeto ] 0 : Hit 2: [74.6459, 20.8533, 21] + [ ecalVeto ] 0 : Hit 3: [77.0538, 16.6826, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-101.67, 54.2186, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-109.829, 65.1101, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5483.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1771 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 119.329, 29] + [ ecalVeto ] 0 : Hit 1: [-109.829, 115.158, 28] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7479.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1772 Brem photon produced 70 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 14 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 156.865, 23] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 152.694, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 140.182, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 136.011, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 127.67, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 123.499, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 110.987, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 106.817, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [62.6062, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [60.1983, 12.512, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 4] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 1] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 14 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2619.77; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1773 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, -106.817, 32] + [ ecalVeto ] 0 : Hit 1: [102.606, -102.646, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [97.7897, -94.3048, 30] + [ ecalVeto ] 0 : Hit 1: [95.3817, -90.1341, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [90.5659, -81.7928, 28] + [ ecalVeto ] 0 : Hit 1: [88.1579, -77.6221, 27] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [83.3421, -69.2808, 26] + [ ecalVeto ] 0 : Hit 1: [80.9341, -65.1101, 25] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2826.61; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1774 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3238.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1775 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3671.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1776 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, 123.499, 13] + [ ecalVeto ] 0 : Hit 1: [11.1041, 127.67, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [11.1041, 119.329, 12] + [ ecalVeto ] 0 : Hit 1: [8.69618, 115.158, 11] + [ ecalVeto ] 0 : Hit 2: [11.1041, 110.987, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6325.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1777 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4846.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1778 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, 123.499, 19] + [ ecalVeto ] 0 : Hit 1: [-145.948, 119.329, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, 173.547, 17] + [ ecalVeto ] 0 : Hit 1: [-117.053, 169.377, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, 156.865, 15] + [ ecalVeto ] 0 : Hit 1: [-102.606, 152.694, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [69.83, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [67.4221, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5515.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1779 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4120.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1780 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3268.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1781 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 1] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4564.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1782 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -79.2426, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -75.0719, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5808.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1783 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 22 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3303.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1784 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1693.97; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1785 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2983.88; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1786 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [-33.711, 8.34132, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 13] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 8.34132, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10246.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1787 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2820.52; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1788 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 16 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2205.67; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1789 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 28] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Hit 4: [26.4873, 4.17066, 10] + [ ecalVeto ] 0 : Hit 5: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6150.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1790 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 25 + [ ecalVeto ] 0 : Beginning track merging using 25 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 22 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [81.8697, -41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [84.2776, -37.5359, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [77.0538, -41.7066, 22] + [ ecalVeto ] 0 : Hit 1: [74.6459, -37.5359, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [60.1983, -37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [62.6062, -33.3653, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -119.329, 18] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -123.499, 17] + [ ecalVeto ] 0 : Hit 2: [-44.8152, -119.329, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [52.9745, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [55.3824, -37.5359, 16] + [ ecalVeto ] 0 : Hit 2: [52.9745, -33.3653, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [45.7507, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [48.1586, -33.3653, 14] + [ ecalVeto ] 0 : Hit 2: [45.7507, -29.1946, 13] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [45.7507, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [48.1586, 8.34132, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -90.1341, 13] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -85.9634, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [55.3824, -45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [52.9745, -41.7066, 11] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [40.9348, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 11] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -79.2426, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 10] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [33.711, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, -33.3653, 8] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 8] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [89.6303, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [89.0935, 12.512, 7] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, -29.1946, 6] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 5] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Hit 3: [19.2635, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [16.8555, -4.17066, 3] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 21: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 22 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4251.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1791 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7406.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1792 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6286.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1793 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 75.0719, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 70.9012, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 70.9012, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6711.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1794 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 15] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 14] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3547.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1795 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -70.9012, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -94.3048, 9] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -98.4754, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6878.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1796 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -102.646, 21] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -106.817, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 181.889, 9] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 177.718, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8331.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1797 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3881.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1798 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -62.5599, 25] + [ ecalVeto ] 0 : Hit 1: [4.81586, -58.3892, 24] + [ ecalVeto ] 0 : Hit 2: [2.40793, -54.2186, 23] + [ ecalVeto ] 0 : Hit 3: [4.81586, -50.0479, 22] + [ ecalVeto ] 0 : Hit 4: [2.40793, -45.8773, 21] + [ ecalVeto ] 0 : Hit 5: [4.81586, -41.7066, 20] + [ ecalVeto ] 0 : Hit 6: [2.40793, -37.5359, 19] + [ ecalVeto ] 0 : Hit 7: [4.81586, -33.3653, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4514.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1799 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 109 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5980.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1800 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5547.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1801 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -66.7306, 24] + [ ecalVeto ] 0 : Hit 1: [45.7507, -62.5599, 23] + [ ecalVeto ] 0 : Hit 2: [48.1586, -58.3892, 22] + [ ecalVeto ] 0 : Hit 3: [45.7507, -54.2186, 21] + [ ecalVeto ] 0 : Hit 4: [48.1586, -58.3892, 20] + [ ecalVeto ] 0 : Hit 5: [45.7507, -54.2186, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 50.0479, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5528.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1802 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 58.3892, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 54.2186, 10] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 50.0479, 9] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 54.2186, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5618.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1803 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 115.158, 13] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 119.329, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7016.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1804 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [33.711, -41.7066, 20] + [ ecalVeto ] 0 : Hit 2: [31.3031, -37.5359, 19] + [ ecalVeto ] 0 : Hit 3: [33.711, -33.3653, 18] + [ ecalVeto ] 0 : Hit 4: [31.3031, -29.1946, 17] + [ ecalVeto ] 0 : Hit 5: [33.711, -25.024, 16] + [ ecalVeto ] 0 : Hit 6: [31.3031, -20.8533, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3393.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1805 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [15.92, -202.742, 11] + [ ecalVeto ] 0 : Hit 1: [18.3279, -198.571, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3648.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1806 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [-108.894, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5604.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1807 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -227.766, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -231.937, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 8: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 9: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6160.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1808 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 115.158, 28] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 110.987, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -202.742, 15] + [ ecalVeto ] 0 : Hit 1: [-52.039, -206.913, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 9: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Hit 10: [-12.0397, 12.512, 1] + [ ecalVeto ] 0 : Hit 11: [-9.63173, 16.6826, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4112.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1809 Brem photon produced 76 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, -12.512, 21] + [ ecalVeto ] 0 : Hit 2: [33.711, -16.6826, 20] + [ ecalVeto ] 0 : Hit 3: [31.3031, -12.512, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, -16.6826, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2295.93; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1810 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-95.3817, 90.1341, 28] + [ ecalVeto ] 0 : Hit 1: [-97.7897, 85.9634, 27] + [ ecalVeto ] 0 : Hit 2: [-95.3817, 81.7928, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-88.1579, 77.6221, 24] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 77.6221, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 73.4515, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [33.711, 8.34132, 10] + [ ecalVeto ] 0 : Hit 5: [31.3031, 12.512, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 65.1101, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 62.5599, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3300.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1811 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 106.817, 20] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 102.646, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, 106.817, 17] + [ ecalVeto ] 0 : Hit 1: [-117.053, 102.646, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7738.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1812 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -4.17066, 25] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -2.36672e-14, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 8.34132, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 87.5839, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 83.4132, 9] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-101.67, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-101.67, 4.17066, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5490.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1813 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, -4.17066, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4310.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1814 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-1.47238, 119.329, 26] + [ ecalVeto ] 0 : Hit 1: [-3.88031, 115.158, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-3.88031, 98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 95.9252, 20] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 91.7545, 19] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 87.5839, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 50.0479, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3458.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1815 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -12.512, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 8.34132, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4653.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1816 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6420.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1817 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6908.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1818 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1818 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -16.6826, 17] + [ ecalVeto ] 0 : Hit 2: [-74.6459, -12.512, 16] + [ ecalVeto ] 0 : Hit 3: [-77.0538, -8.34132, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [68.8945, 60.9395, 14] + [ ecalVeto ] 0 : Hit 1: [67.4221, 58.3892, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 75.0719, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 70.9012, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6301.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1819 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1663.17; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1820 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [33.711, 41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [31.3031, 37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [33.711, 33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [31.3031, 29.1946, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [77.0538, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [74.6459, -12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6387.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1821 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 21] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 20] + [ ecalVeto ] 0 : Hit 3: [24.0793, -16.6826, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Hit 12: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 13: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4136.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1822 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3231.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1823 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3804.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1824 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 75.0719, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [30.3676, 110.987, 1] + [ ecalVeto ] 0 : Hit 1: [32.7755, 115.158, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3563.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1825 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2655.86; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1826 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 37.5359, 27] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 33.3653, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 20.8533, 25] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 16.6826, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-8.69618, -106.817, 16] + [ ecalVeto ] 0 : Hit 1: [-11.1041, -102.646, 15] + [ ecalVeto ] 0 : Hit 2: [-8.69618, -98.4754, 14] + [ ecalVeto ] 0 : Hit 3: [-11.1041, -94.3048, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -62.5599, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2760.81; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1827 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [33.711, 41.7066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-101.67, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 127 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8429.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1828 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7607.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1829 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 16 + [ ecalVeto ] 0 : Beginning track merging using 16 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [26.4873, -37.5359, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [52.9745, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [55.3824, -62.5599, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-112.237, -102.646, 11] + [ ecalVeto ] 0 : Hit 1: [-109.829, -98.4754, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [24.0793, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, -45.8773, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5480.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1830 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, -148.523, 21] + [ ecalVeto ] 0 : Hit 1: [-131.501, -144.353, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -81.7928, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -16.6826, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -69.2808, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -66.7306, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7464.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1831 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5957.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1832 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3930.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1833 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [141.132, -144.353, 22] + [ ecalVeto ] 0 : Hit 1: [138.725, -140.182, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [133.909, -131.841, 20] + [ ecalVeto ] 0 : Hit 1: [131.501, -127.67, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 109 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7083.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1834 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 9: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 10: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Hit 11: [-9.63173, -16.6826, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [59.2627, -94.3048, 11] + [ ecalVeto ] 0 : Hit 1: [61.6707, -90.1341, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [-24.0793, -8.34132, 2] + [ ecalVeto ] 0 : Hit 5: [-26.4873, -12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6494.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1835 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Hit 5: [19.2635, -33.3653, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8203.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1836 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 25] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 22] + [ ecalVeto ] 0 : Hit 2: [-33.711, -41.7066, 21] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -37.5359, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 15] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -20.8533, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3268.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1837 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [15.92, 119.329, 11] + [ ecalVeto ] 0 : Hit 1: [18.3279, 123.499, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4627.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1838 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -62.5599, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -58.3892, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3044.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1839 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -85.9634, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -83.4132, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4047.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1840 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3377.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1841 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 6: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5342.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1842 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3950.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1843 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [48.1586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 2: [45.7507, 4.17066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-87.2224, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-89.6303, 16.6826, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4319.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1844 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5074.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1845 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [81.8697, -25.024, 27] + [ ecalVeto ] 0 : Hit 1: [81.8697, -25.024, 25] + [ ecalVeto ] 0 : Hit 2: [77.0538, -25.024, 26] + [ ecalVeto ] 0 : Hit 3: [77.0538, -25.024, 24] + [ ecalVeto ] 0 : Hit 4: [74.6459, -29.1946, 23] + [ ecalVeto ] 0 : Hit 5: [77.0538, -25.024, 22] + [ ecalVeto ] 0 : Hit 6: [74.6459, -29.1946, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, -29.1946, 20] + [ ecalVeto ] 0 : Hit 1: [67.4221, -25.024, 19] + [ ecalVeto ] 0 : Hit 2: [69.83, -29.1946, 18] + [ ecalVeto ] 0 : Hit 3: [67.4221, -25.024, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, 4.17066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2329.8; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1846 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, -173.547, 27] + [ ecalVeto ] 0 : Hit 1: [11.1041, -169.377, 26] + [ ecalVeto ] 0 : Hit 2: [8.69618, -165.206, 25] + [ ecalVeto ] 0 : Hit 3: [11.1041, -161.035, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 115.158, 5] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 119.329, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3705.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1847 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, -70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [123.341, -66.7306, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [96.8541, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [94.4462, -41.7066, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -81.7928, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -79.2426, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3619.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1848 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -16.6826, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6974.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1849 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, 156.865, 23] + [ ecalVeto ] 0 : Hit 1: [-131.501, 152.694, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, 144.353, 21] + [ ecalVeto ] 0 : Hit 1: [-124.277, 140.182, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 106.817, 15] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 102.646, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -66.7306, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 90.1341, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 85.9634, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 73.4515, 11] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 69.2808, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5584.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1850 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3283.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1851 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -69.2808, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-52.039, -73.4515, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3105.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1852 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [40.9348, 20.8533, 16] + [ ecalVeto ] 0 : Hit 2: [40.9348, 20.8533, 14] + [ ecalVeto ] 0 : Hit 3: [38.5269, 16.6826, 13] + [ ecalVeto ] 0 : Hit 4: [40.9348, 20.8533, 12] + [ ecalVeto ] 0 : Hit 5: [38.5269, 25.024, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5002.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1853 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 79.2426, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 75.0719, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 70.9012, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 66.7306, 16] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 62.5599, 15] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 58.3892, 14] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 58.3892, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -12.512, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4602.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1854 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 79.2426, 25] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 75.0719, 24] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 70.9012, 23] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 66.7306, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 20] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 58.3892, 19] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 54.2186, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5359.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1855 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 22 + [ ecalVeto ] 0 : Beginning track merging using 22 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 20 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, 173.547, 28] + [ ecalVeto ] 0 : Hit 1: [73.7103, 169.377, 27] + [ ecalVeto ] 0 : Hit 2: [76.1183, 165.206, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [68.8945, 144.353, 24] + [ ecalVeto ] 0 : Hit 1: [66.4865, 140.182, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [61.6707, 140.182, 22] + [ ecalVeto ] 0 : Hit 1: [59.2627, 136.011, 21] + [ ecalVeto ] 0 : Hit 2: [61.6707, 131.841, 20] + [ ecalVeto ] 0 : Hit 3: [59.2627, 127.67, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 20] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 18] + [ ecalVeto ] 0 : Hit 2: [24.0793, -8.34132, 19] + [ ecalVeto ] 0 : Hit 3: [26.4873, -4.17066, 18] + [ ecalVeto ] 0 : Hit 4: [24.0793, -8.34132, 17] + [ ecalVeto ] 0 : Hit 5: [26.4873, -4.17066, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 20] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 19] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 17] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [54.4469, 119.329, 18] + [ ecalVeto ] 0 : Hit 1: [52.039, 115.158, 17] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 16] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 15] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [47.2231, 106.817, 16] + [ ecalVeto ] 0 : Hit 1: [44.8152, 102.646, 15] + [ ecalVeto ] 0 : Hit 2: [47.2231, 98.4754, 14] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 85.9634, 14] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [31.3031, 70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [33.711, 66.7306, 10] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 20 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5392.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1856 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1856 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -85.9634, 9] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -81.7928, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3985.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1857 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 77.6221, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 70.9012, 18] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 70.9012, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4598.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1858 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, -8.34132, 29] + [ ecalVeto ] 0 : Hit 1: [-159.46, -12.512, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, -12.512, 27] + [ ecalVeto ] 0 : Hit 1: [-152.237, -16.6826, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, -16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, -20.8533, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-104.078, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, -20.8533, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -20.8533, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4481.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1859 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2580.77; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1860 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -41.7066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 4.17066, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 123 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7260.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1861 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-33.711, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7014.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1862 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 17] + [ ecalVeto ] 0 : Hit 4: [19.2635, 25.024, 16] + [ ecalVeto ] 0 : Hit 5: [16.8555, 29.1946, 15] + [ ecalVeto ] 0 : Hit 6: [19.2635, 25.024, 14] + [ ecalVeto ] 0 : Hit 7: [16.8555, 29.1946, 13] + [ ecalVeto ] 0 : Hit 8: [19.2635, 33.3653, 12] + [ ecalVeto ] 0 : Hit 9: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Hit 10: [19.2635, 41.7066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 6: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 8: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 9: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 10: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4733.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1863 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4239.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1864 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-159.46, -62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [-161.868, -58.3892, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-137.789, -33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [-137.789, -33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [-132.973, -33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-130.565, -37.5359, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4663.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1865 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4797.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1866 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, -29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-137.789, -25.024, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [39.9993, 94.3048, 18] + [ ecalVeto ] 0 : Hit 1: [37.5914, 90.1341, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4598.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1867 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 17] + [ ecalVeto ] 0 : Hit 2: [33.711, 8.34132, 16] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 15] + [ ecalVeto ] 0 : Hit 4: [33.711, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 5: [31.3031, -4.17066, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -12.512, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -16.6826, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-88.1579, -94.3048, 6] + [ ecalVeto ] 0 : Hit 1: [-90.5659, -90.1341, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5891.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1868 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, -45.8773, 27] + [ ecalVeto ] 0 : Hit 1: [-152.237, -50.0479, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, -45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-137.789, -41.7066, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, -37.5359, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1232.4; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1869 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -119.329, 13] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -123.499, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2555.52; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1870 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-102.606, 119.329, 18] + [ ecalVeto ] 0 : Hit 1: [-105.013, 115.158, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 75.0719, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 70.9012, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 66.7306, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 62.5599, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 58.3892, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 20.8533, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6868.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1871 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, 37.5359, 29] + [ ecalVeto ] 0 : Hit 1: [-123.341, 41.7066, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 37.5359, 27] + [ ecalVeto ] 0 : Hit 1: [-108.894, 33.3653, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, 29.1946, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 20.8533, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 16.6826, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [19.2635, -66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -62.5599, 15] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4227.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1872 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, -37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, -41.7066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6978.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1873 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -110.987, 23] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -106.817, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -94.3048, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3976.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1874 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -45.8773, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2742.81; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1875 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 17 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2429.57; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1876 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 15 + [ ecalVeto ] 0 : Beginning track merging using 15 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 69.2808, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, 65.1101, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-137.789, 41.7066, 22] + [ ecalVeto ] 0 : Hit 1: [-140.197, 45.8773, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, 60.9395, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-101.67, 54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [-104.078, 50.0479, 19] + [ ecalVeto ] 0 : Hit 2: [-101.67, 45.8773, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 52.5982, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 41.7066, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 45.8773, 14] + [ ecalVeto ] 0 : Hit 2: [-77.0538, 41.7066, 13] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [-60.1983, 37.5359, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 10] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [96.8541, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [94.4462, -8.34132, 9] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 8] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 6] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 4] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6435.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1877 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7528.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1878 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, 45.8773, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-226.882, 54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-224.475, 50.0479, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -12.512, 14] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [-74.6459, -4.17066, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4319.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1879 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -16.6826, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5273.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1880 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, 77.6221, 10] + [ ecalVeto ] 0 : Hit 1: [38.5269, 75.0719, 9] + [ ecalVeto ] 0 : Hit 2: [40.9348, 70.9012, 8] + [ ecalVeto ] 0 : Hit 3: [38.5269, 66.7306, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 6] + [ ecalVeto ] 0 : Hit 1: [26.4873, 62.5599, 4] + [ ecalVeto ] 0 : Hit 2: [24.0793, 58.3892, 3] + [ ecalVeto ] 0 : Hit 3: [26.4873, 54.2186, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 118 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5737.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1881 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [219.659, 16.6826, 26] + [ ecalVeto ] 0 : Hit 1: [217.251, 12.512, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5479.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1882 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.039, 131.841, 29] + [ ecalVeto ] 0 : Hit 1: [52.039, 131.841, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -41.7066, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-33.711, -33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-26.4873, -29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [-26.4873, -29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [-24.0793, -33.3653, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4358; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1883 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5767.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1884 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5552.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1885 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 27] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -16.6826, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3709.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1886 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [40.9348, 62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [38.5269, 58.3892, 11] + [ ecalVeto ] 0 : Hit 3: [40.9348, 62.5599, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, 45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, 50.0479, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, 45.8773, 8] + [ ecalVeto ] 0 : Hit 4: [24.0793, 50.0479, 7] + [ ecalVeto ] 0 : Hit 5: [26.4873, 45.8773, 6] + [ ecalVeto ] 0 : Hit 6: [24.0793, 41.7066, 5] + [ ecalVeto ] 0 : Hit 7: [24.0793, 41.7066, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [31.3031, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [33.711, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [31.3031, 45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [33.711, 41.7066, 8] + [ ecalVeto ] 0 : Hit 4: [33.711, 41.7066, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5221.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1887 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4799.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1888 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2088.07; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1889 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 85.9634, 7] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 90.1341, 6] + [ ecalVeto ] 0 : Hit 2: [-90.5659, 90.1341, 7] + [ ecalVeto ] 0 : Hit 3: [-88.1579, 85.9634, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 62.5599, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 66.7306, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4359.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1890 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5618.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1891 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -102.646, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -81.7928, 25] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -77.6221, 24] + [ ecalVeto ] 0 : Hit 2: [-90.5659, -73.4515, 23] + [ ecalVeto ] 0 : Hit 3: [-88.1579, -69.2808, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -69.2808, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -65.1101, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -65.1101, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -60.9395, 18] + [ ecalVeto ] 0 : Hit 2: [-76.1183, -56.7688, 17] + [ ecalVeto ] 0 : Hit 3: [-73.7103, -60.9395, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -41.7066, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3130.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1892 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -87.5839, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, -83.4132, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, -79.2426, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, -75.0719, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -70.9012, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -66.7306, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -62.5599, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5742.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1893 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1862.43; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1894 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, 20.8533, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, 16.6826, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-112.237, -161.035, 13] + [ ecalVeto ] 0 : Hit 1: [-109.829, -156.865, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -115.158, 9] + [ ecalVeto ] 0 : Hit 1: [-15.92, -119.329, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -98.4754, 7] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -94.3048, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 114 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6253.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1895 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [38.5269, 50.0479, 17] + [ ecalVeto ] 0 : Hit 2: [33.711, 50.0479, 18] + [ ecalVeto ] 0 : Hit 3: [33.711, 50.0479, 16] + [ ecalVeto ] 0 : Hit 4: [31.3031, 45.8773, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [96.8541, 4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [94.4462, 8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5598.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1896 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -70.9012, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7365.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1897 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [77.0538, 41.7066, 26] + [ ecalVeto ] 0 : Hit 1: [74.6459, 45.8773, 25] + [ ecalVeto ] 0 : Hit 2: [77.0538, 50.0479, 24] + [ ecalVeto ] 0 : Hit 3: [74.6459, 45.8773, 23] + [ ecalVeto ] 0 : Hit 4: [74.6459, 45.8773, 21] + [ ecalVeto ] 0 : Hit 5: [77.0538, 41.7066, 20] + [ ecalVeto ] 0 : Hit 6: [74.6459, 45.8773, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-69.83, -20.8533, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -8.34132, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4783.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1898 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [3.34348, 177.718, 13] + [ ecalVeto ] 0 : Hit 1: [3.88031, 173.547, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6341.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1899 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -83.4132, 21] + [ ecalVeto ] 0 : Hit 1: [26.4873, -79.2426, 20] + [ ecalVeto ] 0 : Hit 2: [24.0793, -75.0719, 19] + [ ecalVeto ] 0 : Hit 3: [26.4873, -79.2426, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -102.646, 18] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -98.4754, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3677.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1900 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [37.5914, 98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [39.9993, 102.646, 20] + [ ecalVeto ] 0 : Hit 2: [37.5914, 98.4754, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, 85.9634, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 83.4132, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 79.2426, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 75.0719, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 62.5599, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 54.2186, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5533.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1901 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, -45.8773, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5409.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1902 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3984.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1903 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [161.868, -25.024, 32] + [ ecalVeto ] 0 : Hit 1: [159.46, -20.8533, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [154.644, -12.512, 30] + [ ecalVeto ] 0 : Hit 1: [152.237, -8.34132, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [226.882, 20.8533, 28] + [ ecalVeto ] 0 : Hit 1: [224.475, 25.024, 27] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-145.013, -12.512, 26] + [ ecalVeto ] 0 : Hit 1: [-147.421, -8.34132, 25] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2582.73; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1904 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -52.5982, 23] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -50.0479, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 20] + [ ecalVeto ] 0 : Hit 2: [-77.0538, -41.7066, 19] + [ ecalVeto ] 0 : Hit 3: [-74.6459, -45.8773, 18] + [ ecalVeto ] 0 : Hit 4: [-77.0538, -41.7066, 17] + [ ecalVeto ] 0 : Hit 5: [-74.6459, -37.5359, 16] + [ ecalVeto ] 0 : Hit 6: [-77.0538, -33.3653, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5170.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1905 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -87.5839, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -83.4132, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -83.4132, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -79.2426, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -79.2426, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -75.0719, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6693.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1906 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3006.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1907 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4796.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1908 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 110.987, 29] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 115.158, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 119.329, 28] + [ ecalVeto ] 0 : Hit 1: [-61.6707, 115.158, 27] + [ ecalVeto ] 0 : Hit 2: [-59.2627, 110.987, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 102.646, 25] + [ ecalVeto ] 0 : Hit 1: [-52.039, 98.4754, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 94.3048, 24] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 90.1341, 23] + [ ecalVeto ] 0 : Hit 2: [-44.8152, 85.9634, 22] + [ ecalVeto ] 0 : Hit 3: [-47.2231, 81.7928, 21] + [ ecalVeto ] 0 : Hit 4: [-44.8152, 77.6221, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 70.9012, 19] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 66.7306, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2203.33; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1909 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5978.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1910 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [26.4873, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, 29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [24.0793, 25.024, 7] + [ ecalVeto ] 0 : Hit 5: [26.4873, 20.8533, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4570.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1911 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3108.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1912 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [96.8541, -12.512, 2] + [ ecalVeto ] 0 : Hit 1: [94.4462, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6734.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1913 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-205.211, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-202.803, -20.8533, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6915.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1914 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, -81.7928, 26] + [ ecalVeto ] 0 : Hit 1: [102.606, -77.6221, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5435.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1915 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, 33.3653, 29] + [ ecalVeto ] 0 : Hit 1: [-145.013, 29.1946, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, -2.36672e-14, 27] + [ ecalVeto ] 0 : Hit 1: [-159.46, 4.17066, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [-116.118, 20.8533, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-125.749, 12.512, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, 8.34132, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [126.685, 85.9634, 20] + [ ecalVeto ] 0 : Hit 1: [124.277, 81.7928, 19] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-104.078, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, 12.512, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 12] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2619.82; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1916 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -75.0719, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, -70.9012, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, -66.7306, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, -62.5599, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4306.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1917 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, -98.4754, 12] + [ ecalVeto ] 0 : Hit 1: [15.92, -94.3048, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4785.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1918 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 27] + [ ecalVeto ] 0 : Hit 1: [-101.67, -4.17066, 26] + [ ecalVeto ] 0 : Hit 2: [-104.078, -8.34132, 25] + [ ecalVeto ] 0 : Hit 3: [-101.67, -12.512, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -25.024, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, -20.8533, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -12.512, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -20.8533, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 19 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3607.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1919 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3454.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1920 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 94.3048, 20] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 90.1341, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5308.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1921 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-205.211, 25.024, 29] + [ ecalVeto ] 0 : Hit 1: [-202.803, 20.8533, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-190.763, 25.024, 27] + [ ecalVeto ] 0 : Hit 1: [-188.356, 20.8533, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 119.329, 24] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 115.158, 23] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 102.646, 22] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 98.4754, 21] + [ ecalVeto ] 0 : Hit 2: [-30.3676, 94.3048, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-132.973, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-130.565, 12.512, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-118.525, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-116.118, 12.512, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 70.9012, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 66.7306, 16] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 62.5599, 15] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 58.3892, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-104.078, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, 4.17066, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3931.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1922 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 75.0719, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, 70.9012, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, 58.3892, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 54.2186, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [33.711, 50.0479, 14] + [ ecalVeto ] 0 : Hit 2: [31.3031, 45.8773, 13] + [ ecalVeto ] 0 : Hit 3: [31.3031, 45.8773, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 50.0479, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-94.4462, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [-96.8541, 20.8533, 13] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 41.7066, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8867.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1923 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-173.908, -12.512, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, -16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-159.46, -20.8533, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -102.646, 19] + [ ecalVeto ] 0 : Hit 1: [-52.039, -98.4754, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-154.644, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-152.237, -25.024, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -90.1341, 17] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -85.9634, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [24.0793, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [26.4873, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [24.0793, -8.34132, 3] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Hit 4: [16.8555, -4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [16.8555, -4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5348.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1924 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [-89.6303, -41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-87.2224, -45.8773, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 4] + [ ecalVeto ] 0 : Hit 1: [19.2635, -50.0479, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4773; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1925 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 54.2186, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 50.0479, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4798.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1926 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -127.67, 17] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -123.499, 16] + [ ecalVeto ] 0 : Hit 2: [-11.1041, -119.329, 15] + [ ecalVeto ] 0 : Hit 3: [-8.69618, -115.158, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -58.3892, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -54.2186, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3457.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1927 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4590.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1928 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5452.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1929 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 136.011, 13] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 140.182, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7120.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1930 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 73.4515, 25] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 69.2808, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 60.9395, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [-69.83, 45.8773, 19] + [ ecalVeto ] 0 : Hit 2: [-67.4221, 41.7066, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 8.34132, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4381.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1931 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [60.1983, -20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [62.6062, -16.6826, 22] + [ ecalVeto ] 0 : Hit 2: [60.1983, -20.8533, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, -20.8533, 20] + [ ecalVeto ] 0 : Hit 1: [52.9745, -16.6826, 19] + [ ecalVeto ] 0 : Hit 2: [55.3824, -20.8533, 18] + [ ecalVeto ] 0 : Hit 3: [52.9745, -16.6826, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3205.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1932 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4629.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1933 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3788.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1934 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4192.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1935 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, -54.2186, 18] + [ ecalVeto ] 0 : Hit 3: [26.4873, -54.2186, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 18] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 16] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 15] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 14] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, 75.0719, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4373.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1936 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 144.353, 30] + [ ecalVeto ] 0 : Hit 1: [66.4865, 140.182, 29] + [ ecalVeto ] 0 : Hit 2: [68.8945, 136.011, 28] + [ ecalVeto ] 0 : Hit 3: [66.4865, 131.841, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [59.2627, 127.67, 27] + [ ecalVeto ] 0 : Hit 1: [61.6707, 123.499, 26] + [ ecalVeto ] 0 : Hit 2: [59.2627, 119.329, 25] + [ ecalVeto ] 0 : Hit 3: [61.6707, 115.158, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [47.2231, 98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [44.8152, 94.3048, 19] + [ ecalVeto ] 0 : Hit 2: [47.2231, 90.1341, 18] + [ ecalVeto ] 0 : Hit 3: [44.8152, 85.9634, 17] + [ ecalVeto ] 0 : Hit 4: [47.2231, 81.7928, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [39.9993, 77.6221, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, 75.0719, 15] + [ ecalVeto ] 0 : Hit 2: [40.9348, 70.9012, 14] + [ ecalVeto ] 0 : Hit 3: [38.5269, 66.7306, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4032.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1937 Brem photon produced 70 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5051.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1938 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2836.21; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1939 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -52.5982, 7] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -56.7688, 6] + [ ecalVeto ] 0 : Hit 2: [-83.3421, -60.9395, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6294.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1940 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, -45.8773, 26] + [ ecalVeto ] 0 : Hit 1: [52.9745, -41.7066, 25] + [ ecalVeto ] 0 : Hit 2: [55.3824, -45.8773, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 21] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 20] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 19] + [ ecalVeto ] 0 : Hit 3: [33.711, -8.34132, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3460.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1941 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-190.763, -2.36672e-14, 29] + [ ecalVeto ] 0 : Hit 1: [-188.356, -4.17066, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, -29.1946, 25] + [ ecalVeto ] 0 : Hit 1: [-137.789, -25.024, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, -37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, -33.3653, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3179.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1942 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-153.172, 123.499, 24] + [ ecalVeto ] 0 : Hit 1: [-155.58, 127.67, 23] + [ ecalVeto ] 0 : Hit 2: [-153.172, 131.841, 22] + [ ecalVeto ] 0 : Hit 3: [-155.58, 136.011, 21] + [ ecalVeto ] 0 : Hit 4: [-153.172, 131.841, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, 110.987, 17] + [ ecalVeto ] 0 : Hit 1: [-124.277, 106.817, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 58.3892, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2899.35; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1943 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5053.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1944 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -54.2186, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -50.0479, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 25.024, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5310.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1945 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3631.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1946 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 54.2186, 15] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 50.0479, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5634.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1947 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, -98.4754, 10] + [ ecalVeto ] 0 : Hit 1: [-11.1041, -94.3048, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, -37.5359, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6124.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1948 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 62.5599, 9] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 58.3892, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [40.9348, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [38.5269, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [40.9348, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [38.5269, 16.6826, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [137.789, -41.7066, 3] + [ ecalVeto ] 0 : Hit 1: [137.789, -41.7066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4928.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1949 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, -25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-159.46, -29.1946, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4625.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1950 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4590.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1951 Brem photon produced 70 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6121.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1952 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5771.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1953 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, 73.4515, 20] + [ ecalVeto ] 0 : Hit 1: [45.7507, 70.9012, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 70.9012, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, 70.9012, 18] + [ ecalVeto ] 0 : Hit 1: [38.5269, 66.7306, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 41.7066, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2754.33; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1954 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 69.2808, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, 65.1101, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 60.9395, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 56.7688, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 56.7688, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 52.5982, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 45.8773, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7038.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1955 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5802.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1956 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, -131.841, 22] + [ ecalVeto ] 0 : Hit 1: [102.606, -127.67, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5290.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1957 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-155.58, 94.3048, 25] + [ ecalVeto ] 0 : Hit 1: [-153.172, 90.1341, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 37.5359, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3283.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1958 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 15 + [ ecalVeto ] 0 : Beginning track merging using 15 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, -136.011, 32] + [ ecalVeto ] 0 : Hit 1: [8.69618, -131.841, 31] + [ ecalVeto ] 0 : Hit 2: [11.1041, -127.67, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [8.69618, -115.158, 29] + [ ecalVeto ] 0 : Hit 1: [11.1041, -110.987, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [8.69618, -98.4754, 27] + [ ecalVeto ] 0 : Hit 1: [11.1041, -94.3048, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [3.88031, 156.865, 26] + [ ecalVeto ] 0 : Hit 1: [3.34348, 161.035, 25] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -83.4132, 25] + [ ecalVeto ] 0 : Hit 1: [12.0397, -79.2426, 24] + [ ecalVeto ] 0 : Hit 2: [9.63173, -75.0719, 23] + [ ecalVeto ] 0 : Hit 3: [12.0397, -70.9012, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [12.0397, -54.2186, 20] + [ ecalVeto ] 0 : Hit 2: [9.63173, -50.0479, 19] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 18] + [ ecalVeto ] 0 : Hit 4: [9.63173, -41.7066, 17] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [3.34348, 119.329, 19] + [ ecalVeto ] 0 : Hit 1: [3.88031, 115.158, 18] + [ ecalVeto ] 0 : Hit 2: [3.34348, 110.987, 17] + [ ecalVeto ] 0 : Hit 3: [3.88031, 106.817, 16] + [ ecalVeto ] 0 : Hit 4: [3.34348, 102.646, 15] + [ ecalVeto ] 0 : Hit 5: [3.88031, 98.4754, 14] + [ ecalVeto ] 0 : Hit 6: [2.40793, 95.9252, 13] + [ ecalVeto ] 0 : Hit 7: [2.40793, 87.5839, 15] + [ ecalVeto ] 0 : Hit 8: [4.81586, 83.4132, 14] + [ ecalVeto ] 0 : Hit 9: [4.81586, 83.4132, 12] + [ ecalVeto ] 0 : Hit 10: [2.40793, 79.2426, 11] + [ ecalVeto ] 0 : Hit 11: [4.81586, 75.0719, 10] + [ ecalVeto ] 0 : Hit 12: [2.40793, 70.9012, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 66.7306, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 87.5839, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 83.4132, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 79.2426, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 29.1946, 0] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1544.92; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1959 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7027.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1960 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 14 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 917.528; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1961 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3681.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1962 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -29.1946, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7112.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1963 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 19 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4177.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1964 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-190.763, -8.34132, 25] + [ ecalVeto ] 0 : Hit 1: [-188.356, -12.512, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, -33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [-159.46, -37.5359, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-147.421, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-145.013, -37.5359, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-140.197, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-137.789, -33.3653, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, 8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, -4.17066, 13] + [ ecalVeto ] 0 : Hit 4: [33.711, -8.34132, 12] + [ ecalVeto ] 0 : Hit 5: [31.3031, -12.512, 11] + [ ecalVeto ] 0 : Hit 6: [33.711, -16.6826, 10] + [ ecalVeto ] 0 : Hit 7: [31.3031, -20.8533, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4149.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1965 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4716.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1966 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -20.8533, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2633.46; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1967 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4643.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1968 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [116.118, 45.8773, 29] + [ ecalVeto ] 0 : Hit 1: [118.525, 50.0479, 28] + [ ecalVeto ] 0 : Hit 2: [116.118, 45.8773, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, -4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-137.789, -2.36672e-14, 16] + [ ecalVeto ] 0 : Hit 2: [-140.197, 4.17066, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-94.4462, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [-96.8541, 4.17066, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5800.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1969 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, -110.987, 22] + [ ecalVeto ] 0 : Hit 1: [8.69618, -106.817, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [11.1041, -110.987, 16] + [ ecalVeto ] 0 : Hit 1: [8.69618, -106.817, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3089.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1970 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -58.3892, 25] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 24] + [ ecalVeto ] 0 : Hit 2: [-33.711, -50.0479, 23] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -45.8773, 22] + [ ecalVeto ] 0 : Hit 4: [-33.711, -41.7066, 21] + [ ecalVeto ] 0 : Hit 5: [-31.3031, -37.5359, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [40.9348, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [38.5269, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [40.9348, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3430.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1971 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -29.1946, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4433.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1972 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [26.4873, -62.5599, 16] + [ ecalVeto ] 0 : Hit 2: [24.0793, -58.3892, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -75.0719, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -70.9012, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6238.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1973 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [15.92, 177.718, 11] + [ ecalVeto ] 0 : Hit 1: [18.3279, 173.547, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [44.8152, -110.987, 9] + [ ecalVeto ] 0 : Hit 1: [47.2231, -106.817, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2425; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1974 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-117.053, -119.329, 26] + [ ecalVeto ] 0 : Hit 1: [-119.461, -115.158, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-248.554, -41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [-246.146, -45.8773, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-226.882, -45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [-224.475, -50.0479, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-105.013, -98.4754, 23] + [ ecalVeto ] 0 : Hit 1: [-102.606, -94.3048, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -94.3048, 21] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -90.1341, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -77.6221, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -65.1101, 16] + [ ecalVeto ] 0 : Hit 2: [-83.3421, -60.9395, 15] + [ ecalVeto ] 0 : Hit 3: [-80.9341, -56.7688, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -56.7688, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -65.1101, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -60.9395, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3757.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1975 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 22] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 20] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 19] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 18] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 17] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 16] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 15] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 14] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 20] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 19] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 18] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 45.8773, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-15.92, -94.3048, 12] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -90.1341, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4957.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1976 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4461.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1977 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 16.6826, 2] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8634.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1978 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, 119.329, 24] + [ ecalVeto ] 0 : Hit 1: [23.1438, 115.158, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5448.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1979 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 13] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [61.6707, 65.1101, 10] + [ ecalVeto ] 0 : Hit 1: [60.1983, 62.5599, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [45.7507, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [48.1586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [45.7507, 54.2186, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6156.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1980 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -190.23, 23] + [ ecalVeto ] 0 : Hit 1: [-102.606, -186.059, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6795.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1981 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 24] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 23] + [ ecalVeto ] 0 : Hit 3: [19.2635, -33.3653, 22] + [ ecalVeto ] 0 : Hit 4: [16.8555, -29.1946, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 20] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 19] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 18] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 17] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 16] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 15] + [ ecalVeto ] 0 : Hit 6: [12.0397, -4.17066, 14] + [ ecalVeto ] 0 : Hit 7: [9.63173, -2.66454e-15, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 95.9252, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, 91.7545, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, 87.5839, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, 83.4132, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3384.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1982 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2951.28; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1983 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3258.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1984 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 110.987, 33] + [ ecalVeto ] 0 : Hit 1: [-109.829, 106.817, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 25] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 24] + [ ecalVeto ] 0 : Hit 2: [-76.1183, 56.7688, 23] + [ ecalVeto ] 0 : Hit 3: [-74.6459, 54.2186, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 20] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 41.7066, 19] + [ ecalVeto ] 0 : Hit 3: [-60.1983, 37.5359, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 12.512, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4355.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1985 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 12] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -33.3653, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -190.23, 9] + [ ecalVeto ] 0 : Hit 1: [-15.92, -186.059, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5925.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1986 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [26.4873, 37.5359, 24] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 23] + [ ecalVeto ] 0 : Hit 3: [26.4873, 29.1946, 22] + [ ecalVeto ] 0 : Hit 4: [24.0793, 25.024, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 6: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2833.09; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1987 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2605.24; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1988 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 144.353, 21] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 140.182, 20] + [ ecalVeto ] 0 : Hit 2: [-39.9993, 136.011, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5800.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1989 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3489.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1990 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3063.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1991 Brem photon produced 71 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5940.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1992 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-130.565, 54.2186, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, 41.7066, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, -45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, -41.7066, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, -37.5359, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3535.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1993 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6037.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1994 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, -81.7928, 20] + [ ecalVeto ] 0 : Hit 1: [88.1579, -77.6221, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [83.3421, -77.6221, 18] + [ ecalVeto ] 0 : Hit 1: [80.9341, -73.4515, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [68.8945, -69.2808, 16] + [ ecalVeto ] 0 : Hit 1: [66.4865, -65.1101, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6636.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1995 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3972.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1996 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-66.4865, 148.523, 12] + [ ecalVeto ] 0 : Hit 1: [-68.8945, 144.353, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3184.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1997 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, -98.4754, 29] + [ ecalVeto ] 0 : Hit 1: [-145.948, -94.3048, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, -98.4754, 27] + [ ecalVeto ] 0 : Hit 1: [-131.501, -94.3048, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-126.685, -85.9634, 25] + [ ecalVeto ] 0 : Hit 1: [-124.277, -81.7928, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-112.237, -77.6221, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, -73.4515, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -60.9395, 21] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -56.7688, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 90.1341, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 85.9634, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3918.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1998 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.34348, -152.694, 17] + [ ecalVeto ] 0 : Hit 1: [3.88031, -148.523, 16] + [ ecalVeto ] 0 : Hit 2: [3.34348, -144.353, 15] + [ ecalVeto ] 0 : Hit 3: [3.88031, -140.182, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -79.2426, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -75.0719, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -70.9012, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 22 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2324.79; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 1999 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [132.973, 33.3653, 26] + [ ecalVeto ] 0 : Hit 1: [130.565, 29.1946, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, -37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [26.4873, -37.5359, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-108.894, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-108.894, 33.3653, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 7: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5143.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2000 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4812.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2001 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 26] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 24] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 23] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 22] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 21] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, 45.8773, 22] + [ ecalVeto ] 0 : Hit 1: [67.4221, 50.0479, 21] + [ ecalVeto ] 0 : Hit 2: [69.83, 45.8773, 20] + [ ecalVeto ] 0 : Hit 3: [67.4221, 50.0479, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 2: [31.3031, 4.17066, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4514.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2002 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [119.461, -90.1341, 24] + [ ecalVeto ] 0 : Hit 1: [119.461, -90.1341, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -12.512, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, -16.6826, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, -12.512, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -20.8533, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2149.91; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2003 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3712.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2004 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 6: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 8: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 9: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3964.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2005 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5186; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2006 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4690.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2007 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [19.2635, -58.3892, 22] + [ ecalVeto ] 0 : Hit 2: [16.8555, -62.5599, 21] + [ ecalVeto ] 0 : Hit 3: [19.2635, -58.3892, 20] + [ ecalVeto ] 0 : Hit 4: [16.8555, -54.2186, 19] + [ ecalVeto ] 0 : Hit 5: [19.2635, -58.3892, 18] + [ ecalVeto ] 0 : Hit 6: [16.8555, -54.2186, 17] + [ ecalVeto ] 0 : Hit 7: [19.2635, -50.0479, 16] + [ ecalVeto ] 0 : Hit 8: [16.8555, -45.8773, 15] + [ ecalVeto ] 0 : Hit 9: [19.2635, -41.7066, 14] + [ ecalVeto ] 0 : Hit 10: [16.8555, -37.5359, 13] + [ ecalVeto ] 0 : Hit 11: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, 79.2426, 17] + [ ecalVeto ] 0 : Hit 1: [-137.789, 75.0719, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-101.67, 54.2186, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-60.1983, 29.1946, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4295.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2008 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -62.5599, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -54.2186, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, -50.0479, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, -45.8773, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5581.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2009 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -37.5359, 24] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 23] + [ ecalVeto ] 0 : Hit 2: [40.9348, -37.5359, 22] + [ ecalVeto ] 0 : Hit 3: [38.5269, -33.3653, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -25.024, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, -20.8533, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, -16.6826, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, -20.8533, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, -12.512, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, -8.34132, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 17 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2583.08; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2010 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 25.024, 27] + [ ecalVeto ] 0 : Hit 1: [-130.565, 20.8533, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, 16.6826, 25] + [ ecalVeto ] 0 : Hit 1: [-116.118, 12.512, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, 8.34132, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -8.34132, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -12.512, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5297.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2011 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 87.5839, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 83.4132, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2018.14; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2012 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-137.789, 58.3892, 24] + [ ecalVeto ] 0 : Hit 1: [-140.197, 62.5599, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 50.0479, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, 45.8773, 6] + [ ecalVeto ] 0 : Hit 3: [24.0793, 50.0479, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6546.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2013 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, -173.547, 27] + [ ecalVeto ] 0 : Hit 1: [-131.501, -169.377, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -77.6221, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [80.9341, -73.4515, 11] + [ ecalVeto ] 0 : Hit 1: [83.3421, -77.6221, 10] + [ ecalVeto ] 0 : Hit 2: [80.9341, -73.4515, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2842.69; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2014 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3797.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2015 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3824.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2016 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 29.1946, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 91.7545, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 87.5839, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, 79.2426, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 75.0719, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6376.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2017 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [132.973, -2.66454e-15, 26] + [ ecalVeto ] 0 : Hit 1: [130.565, 4.17066, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [125.749, -4.17066, 24] + [ ecalVeto ] 0 : Hit 1: [123.341, -2.66454e-15, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [118.525, 8.34132, 24] + [ ecalVeto ] 0 : Hit 1: [118.525, 8.34132, 22] + [ ecalVeto ] 0 : Hit 2: [116.118, 12.512, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 87.5839, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 83.4132, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 70.9012, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 66.7306, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3698.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2018 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-87.2224, -12.512, 16] + [ ecalVeto ] 0 : Hit 1: [-89.6303, -8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [-87.2224, -4.17066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-66.4865, 90.1341, 10] + [ ecalVeto ] 0 : Hit 1: [-68.8945, 85.9634, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6635.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2019 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [40.9348, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [38.5269, 33.3653, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4806.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2020 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -58.3892, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -54.2186, 14] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -50.0479, 13] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -45.8773, 12] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -41.7066, 11] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 12: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 13: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 14: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 15: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -60.9395, 11] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -56.7688, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6796.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2021 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 85.9634, 12] + [ ecalVeto ] 0 : Hit 1: [66.4865, 81.7928, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6546.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2022 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 12 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2787.71; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2023 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3787.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2024 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4311.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2025 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -12.512, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -8.34132, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4025.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2026 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 66.7306, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 62.5599, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 58.3892, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 54.2186, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4152.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2027 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 9] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 69.2808, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 45.8773, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7235.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2028 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-66.4865, -156.865, 24] + [ ecalVeto ] 0 : Hit 1: [-68.8945, -161.035, 23] + [ ecalVeto ] 0 : Hit 2: [-66.4865, -165.206, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -165.206, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -169.377, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -169.377, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -173.547, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5281.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2029 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -194.401, 27] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -190.23, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 6] + [ ecalVeto ] 0 : Hit 2: [12.0397, 54.2186, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4130.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2030 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, -65.1101, 24] + [ ecalVeto ] 0 : Hit 1: [60.1983, -62.5599, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, -50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [45.7507, -45.8773, 19] + [ ecalVeto ] 0 : Hit 2: [48.1586, -41.7066, 18] + [ ecalVeto ] 0 : Hit 3: [45.7507, -37.5359, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 3: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 4: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 5: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 6: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 7: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 8: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 9: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4055.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2031 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -87.5839, 21] + [ ecalVeto ] 0 : Hit 1: [4.81586, -83.4132, 20] + [ ecalVeto ] 0 : Hit 2: [4.81586, -83.4132, 18] + [ ecalVeto ] 0 : Hit 3: [2.40793, -87.5839, 17] + [ ecalVeto ] 0 : Hit 4: [4.81586, -91.7545, 16] + [ ecalVeto ] 0 : Hit 5: [4.81586, -91.7545, 14] + [ ecalVeto ] 0 : Hit 6: [2.40793, -87.5839, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [44.8152, -110.987, 17] + [ ecalVeto ] 0 : Hit 1: [47.2231, -106.817, 16] + [ ecalVeto ] 0 : Hit 2: [47.2231, -106.817, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [97.7897, 110.987, 10] + [ ecalVeto ] 0 : Hit 1: [95.3817, 106.817, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3181.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2032 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [148.356, -90.1341, 28] + [ ecalVeto ] 0 : Hit 1: [145.948, -85.9634, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [52.039, -98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [54.4469, -94.3048, 20] + [ ecalVeto ] 0 : Hit 2: [52.039, -90.1341, 19] + [ ecalVeto ] 0 : Hit 3: [54.4469, -94.3048, 18] + [ ecalVeto ] 0 : Hit 4: [52.039, -90.1341, 17] + [ ecalVeto ] 0 : Hit 5: [54.4469, -85.9634, 16] + [ ecalVeto ] 0 : Hit 6: [52.039, -81.7928, 15] + [ ecalVeto ] 0 : Hit 7: [54.4469, -77.6221, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [47.2231, -73.4515, 14] + [ ecalVeto ] 0 : Hit 1: [45.7507, -70.9012, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5659.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2033 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6293.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2034 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [67.4221, 16.6826, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11450.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2035 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 18] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 17] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 16] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 15] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 14] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 7: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 8: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 9: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 10: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 11: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 12: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 13: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-116.118, 29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [-118.525, 25.024, 13] + [ ecalVeto ] 0 : Hit 3: [-116.118, 20.8533, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-101.67, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-104.078, 16.6826, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3453.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2036 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4701.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2037 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, -161.035, 28] + [ ecalVeto ] 0 : Hit 1: [23.1438, -156.865, 27] + [ ecalVeto ] 0 : Hit 2: [25.5517, -152.694, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [23.1438, -140.182, 25] + [ ecalVeto ] 0 : Hit 1: [25.5517, -136.011, 24] + [ ecalVeto ] 0 : Hit 2: [23.1438, -131.841, 23] + [ ecalVeto ] 0 : Hit 3: [25.5517, -127.67, 22] + [ ecalVeto ] 0 : Hit 4: [23.1438, -123.499, 21] + [ ecalVeto ] 0 : Hit 5: [25.5517, -119.329, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [23.1438, -106.817, 19] + [ ecalVeto ] 0 : Hit 1: [25.5517, -102.646, 18] + [ ecalVeto ] 0 : Hit 2: [23.1438, -98.4754, 17] + [ ecalVeto ] 0 : Hit 3: [25.5517, -94.3048, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 121 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5177.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2038 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4329.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2039 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -127.67, 29] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -123.499, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 16] + [ ecalVeto ] 0 : Hit 3: [19.2635, 8.34132, 14] + [ ecalVeto ] 0 : Hit 4: [16.8555, 4.17066, 13] + [ ecalVeto ] 0 : Hit 5: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 6: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 7: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 8: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 9: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5844.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2040 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, -90.1341, 22] + [ ecalVeto ] 0 : Hit 1: [88.1579, -85.9634, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 58.3892, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-48.1586, 33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6802.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2041 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, -62.5599, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, -58.3892, 15] + [ ecalVeto ] 0 : Hit 4: [26.4873, -54.2186, 14] + [ ecalVeto ] 0 : Hit 5: [24.0793, -50.0479, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [33.711, -50.0479, 16] + [ ecalVeto ] 0 : Hit 2: [31.3031, -54.2186, 15] + [ ecalVeto ] 0 : Hit 3: [33.711, -58.3892, 14] + [ ecalVeto ] 0 : Hit 4: [31.3031, -54.2186, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 79.2426, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 75.0719, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4413.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2042 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 58.3892, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 54.2186, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 50.0479, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 62.5599, 2] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 66.7306, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4519.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2043 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6981.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2044 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [145.013, 12.512, 27] + [ ecalVeto ] 0 : Hit 1: [147.421, 16.6826, 26] + [ ecalVeto ] 0 : Hit 2: [145.013, 20.8533, 25] + [ ecalVeto ] 0 : Hit 3: [147.421, 25.024, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3103.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2045 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [31.3031, 37.5359, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5095.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2046 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3941.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2047 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7547.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2048 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 140.182, 28] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 136.011, 27] + [ ecalVeto ] 0 : Hit 2: [-23.1438, 131.841, 26] + [ ecalVeto ] 0 : Hit 3: [-25.5517, 127.67, 25] + [ ecalVeto ] 0 : Hit 4: [-23.1438, 123.499, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 25] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 110.987, 23] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 106.817, 22] + [ ecalVeto ] 0 : Hit 2: [-25.5517, 102.646, 21] + [ ecalVeto ] 0 : Hit 3: [-23.1438, 98.4754, 20] + [ ecalVeto ] 0 : Hit 4: [-25.5517, 94.3048, 19] + [ ecalVeto ] 0 : Hit 5: [-23.1438, 90.1341, 18] + [ ecalVeto ] 0 : Hit 6: [-25.5517, 85.9634, 17] + [ ecalVeto ] 0 : Hit 7: [-24.0793, 83.4132, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-8.69618, -131.841, 22] + [ ecalVeto ] 0 : Hit 1: [-11.1041, -127.67, 21] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -66.7306, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 54.2186, 14] + [ ecalVeto ] 0 : Hit 2: [-33.711, 50.0479, 13] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 41.7066, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [162.804, 98.4754, 4] + [ ecalVeto ] 0 : Hit 1: [160.396, 94.3048, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3619.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2049 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 16] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5053.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2050 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5967.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2051 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -177.718, 7] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -181.889, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -144.353, 7] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -140.182, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 111 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5921.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2052 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 45.8773, 18] + [ ecalVeto ] 0 : Hit 1: [38.5269, 50.0479, 17] + [ ecalVeto ] 0 : Hit 2: [40.9348, 54.2186, 16] + [ ecalVeto ] 0 : Hit 3: [38.5269, 58.3892, 15] + [ ecalVeto ] 0 : Hit 4: [40.9348, 54.2186, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6905.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2053 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [62.6062, 8.34132, 2] + [ ecalVeto ] 0 : Hit 1: [62.6062, 8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6915.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2054 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3320.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2055 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 131.841, 16] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 127.67, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4549.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2056 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [124.277, 123.499, 23] + [ ecalVeto ] 0 : Hit 1: [126.685, 119.329, 22] + [ ecalVeto ] 0 : Hit 2: [124.277, 123.499, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [31.3031, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5369.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2057 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7483.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2058 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-152.237, -25.024, 24] + [ ecalVeto ] 0 : Hit 1: [-152.237, -25.024, 22] + [ ecalVeto ] 0 : Hit 2: [-152.237, -25.024, 20] + [ ecalVeto ] 0 : Hit 3: [-152.237, -25.024, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, -25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-147.421, -25.024, 21] + [ ecalVeto ] 0 : Hit 2: [-147.421, -25.024, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3770.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2059 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1903.82; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2060 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [48.1586, -41.7066, 20] + [ ecalVeto ] 0 : Hit 2: [45.7507, -45.8773, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -45.8773, 18] + [ ecalVeto ] 0 : Hit 1: [38.5269, -50.0479, 17] + [ ecalVeto ] 0 : Hit 2: [40.9348, -45.8773, 16] + [ ecalVeto ] 0 : Hit 3: [38.5269, -50.0479, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3488.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2061 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 70.9012, 22] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 66.7306, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -62.5599, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5699.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2062 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-152.237, 33.3653, 18] + [ ecalVeto ] 0 : Hit 1: [-154.644, 37.5359, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5025.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2063 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4254.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2064 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5442.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2065 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -115.158, 17] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -119.329, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-15.92, -110.987, 14] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -106.817, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [48.1586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [45.7507, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [48.1586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [45.7507, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4656.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2066 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -66.7306, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -37.5359, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8133.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2067 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-88.1579, 119.329, 24] + [ ecalVeto ] 0 : Hit 1: [-90.5659, 115.158, 23] + [ ecalVeto ] 0 : Hit 2: [-88.1579, 110.987, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, 123.499, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, 119.329, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, 106.817, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, 102.646, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [76.1183, -98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [73.7103, -94.3048, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 90.1341, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 85.9634, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 16] + [ ecalVeto ] 0 : Hit 2: [-68.8945, 69.2808, 15] + [ ecalVeto ] 0 : Hit 3: [-66.4865, 65.1101, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4920.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2068 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 25.024, 22] + [ ecalVeto ] 0 : Hit 1: [48.1586, 25.024, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [60.1983, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [62.6062, 33.3653, 16] + [ ecalVeto ] 0 : Hit 2: [60.1983, 37.5359, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [67.4221, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [69.83, 29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [67.4221, 25.024, 13] + [ ecalVeto ] 0 : Hit 3: [67.4221, 25.024, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-108.894, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3591.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2069 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 85.9634, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3059.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2070 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2694.25; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2071 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -79.2426, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, -75.0719, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, -70.9012, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, -66.7306, 14] + [ ecalVeto ] 0 : Hit 4: [2.40793, -62.5599, 13] + [ ecalVeto ] 0 : Hit 5: [4.81586, -58.3892, 12] + [ ecalVeto ] 0 : Hit 6: [2.40793, -54.2186, 11] + [ ecalVeto ] 0 : Hit 7: [4.81586, -58.3892, 10] + [ ecalVeto ] 0 : Hit 8: [2.40793, -54.2186, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 140.182, 15] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 136.011, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2256.25; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2072 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 14 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1510.53; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2073 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3139.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2074 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 33.3653, 20] + [ ecalVeto ] 0 : Hit 1: [-69.83, 29.1946, 19] + [ ecalVeto ] 0 : Hit 2: [-67.4221, 33.3653, 18] + [ ecalVeto ] 0 : Hit 3: [-69.83, 37.5359, 17] + [ ecalVeto ] 0 : Hit 4: [-67.4221, 33.3653, 16] + [ ecalVeto ] 0 : Hit 5: [-69.83, 37.5359, 15] + [ ecalVeto ] 0 : Hit 6: [-67.4221, 33.3653, 14] + [ ecalVeto ] 0 : Hit 7: [-69.83, 29.1946, 13] + [ ecalVeto ] 0 : Hit 8: [-67.4221, 33.3653, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 54.2186, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5478.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2075 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, -102.646, 16] + [ ecalVeto ] 0 : Hit 1: [95.3817, -98.4754, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [83.3421, -94.3048, 14] + [ ecalVeto ] 0 : Hit 1: [80.9341, -90.1341, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -102.646, 3] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -106.817, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3991.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2076 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 19 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1862.35; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2077 Brem photon produced 81 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6252.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2078 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 56.7688, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 60.9395, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 8.34132, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 4] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9649.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2079 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5498.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2080 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [66.4865, 140.182, 33] + [ ecalVeto ] 0 : Hit 1: [68.8945, 136.011, 32] + [ ecalVeto ] 0 : Hit 2: [66.4865, 131.841, 31] + [ ecalVeto ] 0 : Hit 3: [68.8945, 127.67, 30] + [ ecalVeto ] 0 : Hit 4: [66.4865, 123.499, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [61.6707, 115.158, 28] + [ ecalVeto ] 0 : Hit 1: [59.2627, 110.987, 27] + [ ecalVeto ] 0 : Hit 2: [61.6707, 106.817, 26] + [ ecalVeto ] 0 : Hit 3: [59.2627, 102.646, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [176.316, -83.4132, 28] + [ ecalVeto ] 0 : Hit 1: [173.908, -79.2426, 27] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [154.644, -79.2426, 24] + [ ecalVeto ] 0 : Hit 1: [152.237, -75.0719, 23] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [40.9348, 62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, 58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [40.9348, 54.2186, 14] + [ ecalVeto ] 0 : Hit 3: [38.5269, 50.0479, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1459.42; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2081 Brem photon produced 80 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 1] + [ ecalVeto ] 0 : Hit 4: [19.2635, -16.6826, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 2: [16.8555, 4.17066, 1] + [ ecalVeto ] 0 : Hit 3: [19.2635, 8.34132, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4759.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2082 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3981.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2083 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 102.646, 29] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 98.4754, 28] + [ ecalVeto ] 0 : Hit 2: [-25.5517, 94.3048, 27] + [ ecalVeto ] 0 : Hit 3: [-23.1438, 90.1341, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-190.763, -33.3653, 25] + [ ecalVeto ] 0 : Hit 1: [-188.356, -29.1946, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 21] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 20] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 54.2186, 19] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 50.0479, 18] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 45.8773, 17] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 41.7066, 16] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 37.5359, 15] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 33.3653, 14] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 29.1946, 13] + [ ecalVeto ] 0 : Hit 9: [-9.63173, 25.024, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -131.841, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -127.67, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-125.749, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-123.341, -33.3653, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -66.7306, 10] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -62.5599, 9] + [ ecalVeto ] 0 : Hit 3: [-55.3824, -62.5599, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 8] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -58.3892, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -62.5599, 3] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -66.7306, 2] + [ ecalVeto ] 0 : Hit 2: [-54.4469, -69.2808, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4936.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2084 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -58.3892, 18] + [ ecalVeto ] 0 : Hit 1: [31.3031, -54.2186, 17] + [ ecalVeto ] 0 : Hit 2: [33.711, -58.3892, 16] + [ ecalVeto ] 0 : Hit 3: [31.3031, -54.2186, 15] + [ ecalVeto ] 0 : Hit 4: [33.711, -50.0479, 14] + [ ecalVeto ] 0 : Hit 5: [31.3031, -45.8773, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -45.8773, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -41.7066, 9] + [ ecalVeto ] 0 : Hit 4: [26.4873, -37.5359, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 8: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6132.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2085 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, 50.0479, 13] + [ ecalVeto ] 0 : Hit 2: [40.9348, 45.8773, 12] + [ ecalVeto ] 0 : Hit 3: [38.5269, 41.7066, 11] + [ ecalVeto ] 0 : Hit 4: [40.9348, 37.5359, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4464.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2086 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -152.694, 22] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -148.523, 21] + [ ecalVeto ] 0 : Hit 2: [-76.1183, -148.523, 19] + [ ecalVeto ] 0 : Hit 3: [-73.7103, -144.353, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [33.711, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [31.3031, -20.8533, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -75.0719, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -70.9012, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -70.9012, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -66.7306, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5148.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2087 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [89.6303, -8.34132, 26] + [ ecalVeto ] 0 : Hit 1: [89.0935, -12.512, 25] + [ ecalVeto ] 0 : Hit 2: [89.6303, -16.6826, 24] + [ ecalVeto ] 0 : Hit 3: [89.0935, -20.8533, 23] + [ ecalVeto ] 0 : Hit 4: [84.2776, -20.8533, 24] + [ ecalVeto ] 0 : Hit 5: [84.2776, -20.8533, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [32.7755, -131.841, 26] + [ ecalVeto ] 0 : Hit 1: [30.3676, -127.67, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -83.4132, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, -79.2426, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, -75.0719, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, -70.9012, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 8: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 9: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 10: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 11: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2276.84; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2088 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -58.3892, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 1] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4995.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2089 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, -60.9395, 14] + [ ecalVeto ] 0 : Hit 1: [67.4221, -58.3892, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-162.804, -156.865, 9] + [ ecalVeto ] 0 : Hit 1: [-160.396, -161.035, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 1] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -54.2186, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 111 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6443.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2090 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, 98.4754, 28] + [ ecalVeto ] 0 : Hit 1: [59.2627, 94.3048, 27] + [ ecalVeto ] 0 : Hit 2: [61.6707, 90.1341, 26] + [ ecalVeto ] 0 : Hit 3: [59.2627, 85.9634, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 81.7928, 13] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 85.9634, 12] + [ ecalVeto ] 0 : Hit 2: [-30.3676, 85.9634, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 75.0719, 10] + [ ecalVeto ] 0 : Hit 2: [-39.9993, 77.6221, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, 66.7306, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 62.5599, 8] + [ ecalVeto ] 0 : Hit 3: [-33.711, 66.7306, 7] + [ ecalVeto ] 0 : Hit 4: [-31.3031, 62.5599, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 75.0719, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 70.9012, 9] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 75.0719, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 66.7306, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [-24.0793, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7164.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2091 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 69.2808, 11] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 65.1101, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -8.34132, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6750.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2092 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 54.2186, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5785.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2093 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, 123.499, 25] + [ ecalVeto ] 0 : Hit 1: [11.1041, 119.329, 24] + [ ecalVeto ] 0 : Hit 2: [8.69618, 115.158, 23] + [ ecalVeto ] 0 : Hit 3: [11.1041, 110.987, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [15.92, 102.646, 21] + [ ecalVeto ] 0 : Hit 1: [18.3279, 98.4754, 20] + [ ecalVeto ] 0 : Hit 2: [15.92, 94.3048, 19] + [ ecalVeto ] 0 : Hit 3: [18.3279, 98.4754, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 83.4132, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 79.2426, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, 75.0719, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, 70.9012, 11] + [ ecalVeto ] 0 : Hit 4: [19.2635, 66.7306, 10] + [ ecalVeto ] 0 : Hit 5: [16.8555, 62.5599, 9] + [ ecalVeto ] 0 : Hit 6: [16.8555, 54.2186, 11] + [ ecalVeto ] 0 : Hit 7: [19.2635, 58.3892, 10] + [ ecalVeto ] 0 : Hit 8: [16.8555, 54.2186, 9] + [ ecalVeto ] 0 : Hit 9: [19.2635, 50.0479, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [26.4873, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [19.2635, 50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 45.8773, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, 41.7066, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Hit 6: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7328.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2094 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3363.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2095 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, -37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-137.789, -33.3653, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-130.565, -29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [-132.973, -33.3653, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6482.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2096 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [77.0538, 50.0479, 26] + [ ecalVeto ] 0 : Hit 1: [74.6459, 45.8773, 25] + [ ecalVeto ] 0 : Hit 2: [77.0538, 41.7066, 24] + [ ecalVeto ] 0 : Hit 3: [74.6459, 37.5359, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, 16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [45.7507, 12.512, 15] + [ ecalVeto ] 0 : Hit 2: [48.1586, 16.6826, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4823.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2097 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 6: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 7: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 7 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1045.53; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2098 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 79.2426, 28] + [ ecalVeto ] 0 : Hit 1: [9.63173, 75.0719, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 58.3892, 25] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 24] + [ ecalVeto ] 0 : Hit 2: [9.63173, 50.0479, 23] + [ ecalVeto ] 0 : Hit 3: [12.0397, 45.8773, 22] + [ ecalVeto ] 0 : Hit 4: [9.63173, 41.7066, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 8: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4289.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2099 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [161.868, -66.7306, 32] + [ ecalVeto ] 0 : Hit 1: [159.46, -62.5599, 31] + [ ecalVeto ] 0 : Hit 2: [161.868, -58.3892, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [104.078, -25.024, 18] + [ ecalVeto ] 0 : Hit 1: [101.67, -20.8533, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Hit 9: [-12.0397, 12.512, 1] + [ ecalVeto ] 0 : Hit 10: [-9.63173, 16.6826, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 73.4515, 11] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 69.2808, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 73.4515, 6] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 77.6221, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5584.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2100 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, -98.4754, 30] + [ ecalVeto ] 0 : Hit 1: [30.3676, -94.3048, 29] + [ ecalVeto ] 0 : Hit 2: [32.7755, -90.1341, 28] + [ ecalVeto ] 0 : Hit 3: [30.3676, -85.9634, 27] + [ ecalVeto ] 0 : Hit 4: [32.7755, -81.7928, 26] + [ ecalVeto ] 0 : Hit 5: [31.3031, -79.2426, 25] + [ ecalVeto ] 0 : Hit 6: [33.711, -75.0719, 24] + [ ecalVeto ] 0 : Hit 7: [31.3031, -70.9012, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 21] + [ ecalVeto ] 0 : Hit 2: [26.4873, -62.5599, 20] + [ ecalVeto ] 0 : Hit 3: [24.0793, -58.3892, 19] + [ ecalVeto ] 0 : Hit 4: [26.4873, -54.2186, 18] + [ ecalVeto ] 0 : Hit 5: [24.0793, -50.0479, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 22] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 21] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 20] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 19] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 18] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 7: [12.0397, -4.17066, 14] + [ ecalVeto ] 0 : Hit 8: [9.63173, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 9: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 15] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 14] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2890.24; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2101 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 62.5599, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 58.3892, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1293.88; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2102 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -70.9012, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -66.7306, 12] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -70.9012, 11] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -66.7306, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4284.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2103 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-102.606, 85.9634, 28] + [ ecalVeto ] 0 : Hit 1: [-105.013, 81.7928, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, 58.3892, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, 54.2186, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 50.0479, 20] + [ ecalVeto ] 0 : Hit 2: [-96.8541, 45.8773, 19] + [ ecalVeto ] 0 : Hit 3: [-94.4462, 41.7066, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 37.5359, 16] + [ ecalVeto ] 0 : Hit 2: [-89.6303, 33.3653, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [40.9348, 54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, 50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [40.9348, 45.8773, 10] + [ ecalVeto ] 0 : Hit 3: [38.5269, 41.7066, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4420.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2104 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2799.33; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2105 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -90.1341, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -85.9634, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -65.1101, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -50.0479, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5726.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2106 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [130.565, -4.17066, 29] + [ ecalVeto ] 0 : Hit 1: [132.973, -8.34132, 28] + [ ecalVeto ] 0 : Hit 2: [130.565, -12.512, 27] + [ ecalVeto ] 0 : Hit 3: [132.973, -16.6826, 26] + [ ecalVeto ] 0 : Hit 4: [130.565, -20.8533, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -65.1101, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-108.894, -16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [-111.302, -12.512, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6616.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2107 Brem photon produced 84 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5955.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2108 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 45.8773, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [-83.3421, 52.5982, 5] + [ ecalVeto ] 0 : Hit 3: [-81.8697, 50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6963.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2109 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 16 + [ ecalVeto ] 0 : Beginning track merging using 16 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 16 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-102.606, -127.67, 30] + [ ecalVeto ] 0 : Hit 1: [-105.013, -123.499, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-109.829, -115.158, 28] + [ ecalVeto ] 0 : Hit 1: [-112.237, -110.987, 27] + [ ecalVeto ] 0 : Hit 2: [-109.829, -106.817, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-119.461, -98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-117.053, -94.3048, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-112.237, -85.9634, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, -90.1341, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-105.013, -81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, -77.6221, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [76.1183, 56.7688, 20] + [ ecalVeto ] 0 : Hit 1: [74.6459, 54.2186, 19] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [48.1586, 33.3653, 20] + [ ecalVeto ] 0 : Hit 1: [45.7507, 37.5359, 19] + [ ecalVeto ] 0 : Hit 2: [48.1586, 33.3653, 18] + [ ecalVeto ] 0 : Hit 3: [45.7507, 29.1946, 17] + [ ecalVeto ] 0 : Hit 4: [48.1586, 33.3653, 16] + [ ecalVeto ] 0 : Hit 5: [45.7507, 29.1946, 15] + [ ecalVeto ] 0 : Hit 6: [48.1586, 33.3653, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -65.1101, 18] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-147.421, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-145.013, 12.512, 18] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -25.024, 16] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-125.749, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-123.341, 8.34132, 16] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -65.1101, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -60.9395, 16] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 14] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -52.5982, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -50.0479, 14] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 12] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 16 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4085.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2110 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3875.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2111 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-202.803, -62.5599, 28] + [ ecalVeto ] 0 : Hit 1: [-202.803, -62.5599, 26] + [ ecalVeto ] 0 : Hit 2: [-205.211, -58.3892, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-212.435, -62.5599, 25] + [ ecalVeto ] 0 : Hit 1: [-210.027, -58.3892, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -58.3892, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -54.2186, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -50.0479, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -45.8773, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5490.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2112 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [37.5914, -81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [39.9993, -77.6221, 22] + [ ecalVeto ] 0 : Hit 2: [38.5269, -75.0719, 21] + [ ecalVeto ] 0 : Hit 3: [38.5269, -75.0719, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, -54.2186, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, -50.0479, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -45.8773, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-74.6459, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-77.0538, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5993.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2113 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -12.512, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 29.1946, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4122.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2114 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5806.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2115 Brem photon produced 87 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5309.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2116 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 16 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6005.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2117 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3543.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2118 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -102.646, 26] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -98.4754, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -79.2426, 22] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -75.0719, 21] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -70.9012, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -50.0479, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5798.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2119 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 144.353, 33] + [ ecalVeto ] 0 : Hit 1: [-52.039, 140.182, 32] + [ ecalVeto ] 0 : Hit 2: [-54.4469, 136.011, 31] + [ ecalVeto ] 0 : Hit 3: [-52.039, 131.841, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 119.329, 29] + [ ecalVeto ] 0 : Hit 1: [-52.039, 115.158, 28] + [ ecalVeto ] 0 : Hit 2: [-54.4469, 110.987, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.039, 98.4754, 26] + [ ecalVeto ] 0 : Hit 1: [-54.4469, 94.3048, 25] + [ ecalVeto ] 0 : Hit 2: [-52.039, 90.1341, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [73.7103, -194.401, 21] + [ ecalVeto ] 0 : Hit 1: [73.7103, -194.401, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 66.7306, 20] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 62.5599, 19] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 58.3892, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, -83.4132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -79.2426, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2856.95; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2120 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-137.789, 75.0719, 22] + [ ecalVeto ] 0 : Hit 1: [-140.197, 70.9012, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6065.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2121 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 17] + [ ecalVeto ] 0 : Hit 2: [31.3031, 12.512, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 3: [26.4873, -4.17066, 10] + [ ecalVeto ] 0 : Hit 4: [24.0793, -8.34132, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [105.013, -73.4515, 8] + [ ecalVeto ] 0 : Hit 1: [105.013, -73.4515, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 123 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5897.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2122 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-116.118, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 3] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4770.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2123 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [118.525, 50.0479, 28] + [ ecalVeto ] 0 : Hit 1: [118.525, 50.0479, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-183.54, -4.17066, 27] + [ ecalVeto ] 0 : Hit 1: [-181.132, -8.34132, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-147.421, -2.36672e-14, 23] + [ ecalVeto ] 0 : Hit 1: [-145.013, -4.17066, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -2.36672e-14, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3154.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2124 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6641.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2125 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -102.646, 16] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -98.4754, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5495.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2126 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, 29.1946, 26] + [ ecalVeto ] 0 : Hit 1: [123.341, 25.024, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 131.841, 24] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 127.67, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 14] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 54.2186, 13] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 50.0479, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-33.711, 41.7066, 3] + [ ecalVeto ] 0 : Hit 4: [-31.3031, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 134 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2937.64; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2127 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2476.98; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2128 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 119 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6296.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2129 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-123.341, 33.3653, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 33.3653, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 2] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -45.8773, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5987.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2130 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 45.8773, 12] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 41.7066, 11] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 33.3653, 13] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 37.5359, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 50.0479, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5499.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2131 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-73.7103, 60.9395, 20] + [ ecalVeto ] 0 : Hit 1: [-76.1183, 65.1101, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 75.0719, 12] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 75.0719, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 62.5599, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 70.9012, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 45.8773, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7256.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2132 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, 85.9634, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, 81.7928, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, 77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, 73.4515, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 65.1101, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 56.7688, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 52.5982, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5155.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2133 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3188.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2134 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 127.67, 22] + [ ecalVeto ] 0 : Hit 1: [66.4865, 123.499, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [61.6707, 115.158, 20] + [ ecalVeto ] 0 : Hit 1: [59.2627, 110.987, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [226.882, -45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [224.475, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5037.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2135 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 94.3048, 29] + [ ecalVeto ] 0 : Hit 1: [-138.725, 90.1341, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-145.948, 136.011, 28] + [ ecalVeto ] 0 : Hit 1: [-145.948, 136.011, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-141.132, 110.987, 27] + [ ecalVeto ] 0 : Hit 1: [-138.725, 115.158, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-141.132, 127.67, 27] + [ ecalVeto ] 0 : Hit 1: [-138.725, 123.499, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-133.909, 106.817, 25] + [ ecalVeto ] 0 : Hit 1: [-131.501, 102.646, 24] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-119.461, 98.4754, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, 94.3048, 22] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 77.6221, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 73.4515, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-111.302, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, 8.34132, 18] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2056.86; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2136 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5028.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2137 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [154.644, 79.2426, 26] + [ ecalVeto ] 0 : Hit 1: [152.237, 75.0719, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -156.865, 18] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -152.694, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4388.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2138 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6687.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2139 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5990.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2140 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -115.158, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -110.987, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6420.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2141 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -58.3892, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Hit 4: [4.81586, -58.3892, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, -62.5599, 9] + [ ecalVeto ] 0 : Hit 6: [2.40793, -62.5599, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, -66.7306, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6999.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2142 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -20.8533, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4068.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2143 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5360.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2144 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-116.118, 62.5599, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8337.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2145 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -16.6826, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 115 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7453.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2146 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 15 + [ ecalVeto ] 0 : Beginning track merging using 15 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [188.356, -45.8773, 27] + [ ecalVeto ] 0 : Hit 1: [190.763, -50.0479, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, 136.011, 22] + [ ecalVeto ] 0 : Hit 1: [23.1438, 131.841, 21] + [ ecalVeto ] 0 : Hit 2: [25.5517, 127.67, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [23.1438, 115.158, 19] + [ ecalVeto ] 0 : Hit 1: [25.5517, 110.987, 18] + [ ecalVeto ] 0 : Hit 2: [23.1438, 106.817, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [18.3279, 98.4754, 16] + [ ecalVeto ] 0 : Hit 1: [15.92, 94.3048, 15] + [ ecalVeto ] 0 : Hit 2: [18.3279, 90.1341, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 87.5839, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, 83.4132, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 75.0719, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 70.9012, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 66.7306, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -58.3892, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 77.6221, 8] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 73.4515, 7] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3429.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2147 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, 131.841, 18] + [ ecalVeto ] 0 : Hit 1: [44.8152, 127.67, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [32.7755, 98.4754, 12] + [ ecalVeto ] 0 : Hit 1: [30.3676, 94.3048, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 50.0479, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, 45.8773, 1] + [ ecalVeto ] 0 : Hit 6: [4.81586, 41.7066, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 110.987, 3] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 106.817, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4864.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2148 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 20] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 16.6826, 19] + [ ecalVeto ] 0 : Hit 3: [-60.1983, 12.512, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -8.34132, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [31.3031, -20.8533, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8361.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2149 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [126.685, -102.646, 28] + [ ecalVeto ] 0 : Hit 1: [124.277, -98.4754, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -94.3048, 21] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -90.1341, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -81.7928, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -77.6221, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -69.2808, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3149.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2150 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, -50.0479, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [26.4873, -45.8773, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5794.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2151 Brem photon produced 77 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [26.4873, -45.8773, 4] + [ ecalVeto ] 0 : Hit 3: [24.0793, -41.7066, 3] + [ ecalVeto ] 0 : Hit 4: [26.4873, -45.8773, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [19.2635, -41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5151.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2152 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5812.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2153 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-108.894, -25.024, 24] + [ ecalVeto ] 0 : Hit 1: [-111.302, -20.8533, 23] + [ ecalVeto ] 0 : Hit 2: [-108.894, -16.6826, 22] + [ ecalVeto ] 0 : Hit 3: [-111.302, -12.512, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 12.512, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -8.34132, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -50.0479, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5777.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2154 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2154 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [26.4873, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4138.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2155 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [31.3031, -62.5599, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6067.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2156 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 21 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3856.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2157 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3413.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2158 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, 54.2186, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 45.8773, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 37.5359, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -62.5599, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -66.7306, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -62.5599, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4433.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2159 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2207.84; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2160 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7184.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2161 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -106.817, 24] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -102.646, 23] + [ ecalVeto ] 0 : Hit 2: [-23.1438, -98.4754, 22] + [ ecalVeto ] 0 : Hit 3: [-25.5517, -94.3048, 21] + [ ecalVeto ] 0 : Hit 4: [-23.1438, -90.1341, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 33.3653, 18] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 37.5359, 17] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 33.3653, 16] + [ ecalVeto ] 0 : Hit 3: [-55.3824, 29.1946, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -45.8773, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5230.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2162 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4865.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2163 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3306.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2164 Brem photon produced 76 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8597.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2165 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5424.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2166 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4943.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2167 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4154.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2168 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4682.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2169 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 16.6826, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -54.2186, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6305.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2170 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 87.5839, 27] + [ ecalVeto ] 0 : Hit 1: [4.81586, 83.4132, 26] + [ ecalVeto ] 0 : Hit 2: [2.40793, 79.2426, 25] + [ ecalVeto ] 0 : Hit 3: [4.81586, 75.0719, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -83.4132, 23] + [ ecalVeto ] 0 : Hit 1: [12.0397, -79.2426, 22] + [ ecalVeto ] 0 : Hit 2: [9.63173, -75.0719, 21] + [ ecalVeto ] 0 : Hit 3: [12.0397, -70.9012, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 22] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 21] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 20] + [ ecalVeto ] 0 : Hit 4: [2.40793, 45.8773, 19] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 18] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 17] + [ ecalVeto ] 0 : Hit 7: [4.81586, 33.3653, 16] + [ ecalVeto ] 0 : Hit 8: [2.40793, 29.1946, 15] + [ ecalVeto ] 0 : Hit 9: [4.81586, 25.024, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 8: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 9: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1373.85; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2171 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [94.4462, -50.0479, 29] + [ ecalVeto ] 0 : Hit 1: [96.8541, -45.8773, 28] + [ ecalVeto ] 0 : Hit 2: [96.8541, -45.8773, 26] + [ ecalVeto ] 0 : Hit 3: [94.4462, -41.7066, 25] + [ ecalVeto ] 0 : Hit 4: [96.8541, -37.5359, 24] + [ ecalVeto ] 0 : Hit 5: [94.4462, -33.3653, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-87.2224, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-89.6303, -25.024, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-94.4462, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-96.8541, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [-96.8541, -37.5359, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-87.2224, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-89.6303, -41.7066, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -45.8773, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5103.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2172 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-181.132, -2.36672e-14, 28] + [ ecalVeto ] 0 : Hit 1: [-183.54, 4.17066, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-219.659, -8.34132, 25] + [ ecalVeto ] 0 : Hit 1: [-217.251, -4.17066, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 8.34132, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6844.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2173 Brem photon produced 81 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3825.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2174 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3867.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2175 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2175 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 8: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 9: [4.81586, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3717.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2176 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-101.67, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [-104.078, -50.0479, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-111.302, -54.2186, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 14864.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2177 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3424.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2178 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, -20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [19.2635, -25.024, 14] + [ ecalVeto ] 0 : Hit 5: [16.8555, -20.8533, 13] + [ ecalVeto ] 0 : Hit 6: [19.2635, -16.6826, 12] + [ ecalVeto ] 0 : Hit 7: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7541.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2179 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-212.435, -62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-210.027, -58.3892, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-205.211, -58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [-202.803, -54.2186, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, 58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 54.2186, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -29.1946, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3804.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2180 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [60.1983, 29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [62.6062, 25.024, 22] + [ ecalVeto ] 0 : Hit 2: [60.1983, 29.1946, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5345.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2181 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [38.5269, -41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [38.5269, -41.7066, 13] + [ ecalVeto ] 0 : Hit 3: [40.9348, -45.8773, 12] + [ ecalVeto ] 0 : Hit 4: [38.5269, -50.0479, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, -33.3653, 13] + [ ecalVeto ] 0 : Hit 4: [26.4873, -37.5359, 12] + [ ecalVeto ] 0 : Hit 5: [24.0793, -33.3653, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7265.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2182 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -12.512, 14] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -12.512, 12] + [ ecalVeto ] 0 : Hit 3: [-48.1586, -8.34132, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -12.512, 11] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -8.34132, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 29.1946, 0] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6790.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2183 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [31.3031, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [33.711, -8.34132, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 1] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4637.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2184 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [40.9348, 20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [38.5269, 16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [40.9348, 12.512, 12] + [ ecalVeto ] 0 : Hit 4: [38.5269, 8.34132, 11] + [ ecalVeto ] 0 : Hit 5: [38.5269, 8.34132, 9] + [ ecalVeto ] 0 : Hit 6: [33.711, 8.34132, 10] + [ ecalVeto ] 0 : Hit 7: [31.3031, 4.17066, 9] + [ ecalVeto ] 0 : Hit 8: [33.711, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 9: [31.3031, -4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [33.711, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3805.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2185 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 22 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3681.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2186 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 54.2186, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 50.0479, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [8.69618, 123.499, 5] + [ ecalVeto ] 0 : Hit 1: [11.1041, 127.67, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 1] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6003.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2187 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6114.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2188 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -50.0479, 7] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [-26.4873, -45.8773, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5416.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2189 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, 131.841, 21] + [ ecalVeto ] 0 : Hit 1: [-160.396, 127.67, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-155.58, 119.329, 19] + [ ecalVeto ] 0 : Hit 1: [-153.172, 115.158, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-112.237, 77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-109.829, 73.4515, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [104.078, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [101.67, 12.512, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 117 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8628.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2190 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [205.211, 8.34132, 2] + [ ecalVeto ] 0 : Hit 1: [202.803, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5344.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2191 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 6: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 8: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4419.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2192 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 54.2186, 16] + [ ecalVeto ] 0 : Hit 1: [-33.711, 50.0479, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -12.512, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -8.34132, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4324.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2193 Brem photon produced 5 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, -152.694, 20] + [ ecalVeto ] 0 : Hit 1: [37.5914, -148.523, 19] + [ ecalVeto ] 0 : Hit 2: [39.9993, -144.353, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [30.3676, -136.011, 17] + [ ecalVeto ] 0 : Hit 1: [32.7755, -131.841, 16] + [ ecalVeto ] 0 : Hit 2: [30.3676, -127.67, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [40.9348, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [38.5269, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [33.711, 8.34132, 10] + [ ecalVeto ] 0 : Hit 4: [31.3031, 4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [33.711, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 6: [31.3031, -4.17066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -12.512, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, 16.6826, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5929.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2194 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-66.4865, -81.7928, 28] + [ ecalVeto ] 0 : Hit 1: [-68.8945, -77.6221, 27] + [ ecalVeto ] 0 : Hit 2: [-66.4865, -81.7928, 26] + [ ecalVeto ] 0 : Hit 3: [-68.8945, -85.9634, 25] + [ ecalVeto ] 0 : Hit 4: [-66.4865, -81.7928, 24] + [ ecalVeto ] 0 : Hit 5: [-68.8945, -85.9634, 23] + [ ecalVeto ] 0 : Hit 6: [-66.4865, -81.7928, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-33.711, -41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -37.5359, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6239.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2195 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -66.7306, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -70.9012, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -75.0719, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, -79.2426, 7] + [ ecalVeto ] 0 : Hit 5: [19.2635, -83.4132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [40.9348, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [38.5269, -33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [40.9348, -37.5359, 2] + [ ecalVeto ] 0 : Hit 4: [38.5269, -41.7066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6027.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2196 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, 140.182, 23] + [ ecalVeto ] 0 : Hit 1: [-131.501, 136.011, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, 98.4754, 19] + [ ecalVeto ] 0 : Hit 1: [-102.606, 94.3048, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 77.6221, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1819.04; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2197 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1264.6; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2198 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -33.3653, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6068.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2199 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, -94.3048, 18] + [ ecalVeto ] 0 : Hit 1: [23.1438, -90.1341, 17] + [ ecalVeto ] 0 : Hit 2: [25.5517, -85.9634, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, -83.4132, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -70.9012, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -66.7306, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -62.5599, 11] + [ ecalVeto ] 0 : Hit 4: [19.2635, -58.3892, 10] + [ ecalVeto ] 0 : Hit 5: [16.8555, -54.2186, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6825.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2200 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3609.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2201 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4246.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2202 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -106.817, 23] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -106.817, 21] + [ ecalVeto ] 0 : Hit 2: [-15.92, -102.646, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3319.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2203 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2444.59; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2204 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-1.47238, -169.377, 30] + [ ecalVeto ] 0 : Hit 1: [-3.88031, -165.206, 29] + [ ecalVeto ] 0 : Hit 2: [-1.47238, -161.035, 28] + [ ecalVeto ] 0 : Hit 3: [-3.88031, -156.865, 27] + [ ecalVeto ] 0 : Hit 4: [-1.47238, -152.694, 26] + [ ecalVeto ] 0 : Hit 5: [-3.88031, -148.523, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [3.34348, -110.987, 19] + [ ecalVeto ] 0 : Hit 1: [3.88031, -106.817, 18] + [ ecalVeto ] 0 : Hit 2: [3.34348, -102.646, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [62.6062, -41.7066, 18] + [ ecalVeto ] 0 : Hit 1: [60.1983, -37.5359, 17] + [ ecalVeto ] 0 : Hit 2: [62.6062, -33.3653, 16] + [ ecalVeto ] 0 : Hit 3: [60.1983, -37.5359, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -79.2426, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -75.0719, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -70.9012, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -66.7306, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, -33.3653, 2] + [ ecalVeto ] 0 : Hit 4: [16.8555, -37.5359, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4372.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2205 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8410.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2206 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, -136.011, 26] + [ ecalVeto ] 0 : Hit 1: [8.69618, -131.841, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -98.4754, 23] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -102.646, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-1.47238, -119.329, 22] + [ ecalVeto ] 0 : Hit 1: [-3.88031, -115.158, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-8.69618, -106.817, 20] + [ ecalVeto ] 0 : Hit 1: [-11.1041, -102.646, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-15.92, -102.646, 18] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -98.4754, 17] + [ ecalVeto ] 0 : Hit 2: [-15.92, -94.3048, 16] + [ ecalVeto ] 0 : Hit 3: [-18.3279, -90.1341, 15] + [ ecalVeto ] 0 : Hit 4: [-18.3279, -90.1341, 13] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -87.5839, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -94.3048, 15] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -98.4754, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 60.9395, 15] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 56.7688, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -58.3892, 9] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -58.3892, 7] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -54.2186, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 10] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 112 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6599.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2207 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 131.841, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 127.67, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5507.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2208 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, 41.7066, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, 45.8773, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 111 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4176.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2209 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 87.5839, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 83.4132, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, 66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [45.7507, 62.5599, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 66.7306, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4773.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2210 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [12.0397, -62.5599, 20] + [ ecalVeto ] 0 : Hit 2: [9.63173, -58.3892, 19] + [ ecalVeto ] 0 : Hit 3: [12.0397, -54.2186, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9628.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2211 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7642.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2212 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [33.711, 8.34132, 22] + [ ecalVeto ] 0 : Hit 2: [31.3031, 12.512, 21] + [ ecalVeto ] 0 : Hit 3: [33.711, 8.34132, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [33.711, 16.6826, 18] + [ ecalVeto ] 0 : Hit 2: [31.3031, 20.8533, 17] + [ ecalVeto ] 0 : Hit 3: [33.711, 25.024, 16] + [ ecalVeto ] 0 : Hit 4: [31.3031, 29.1946, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [26.4873, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [24.0793, 41.7066, 11] + [ ecalVeto ] 0 : Hit 3: [26.4873, 37.5359, 10] + [ ecalVeto ] 0 : Hit 4: [24.0793, 33.3653, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3091.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2213 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -45.8773, 3] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 2] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 1] + [ ecalVeto ] 0 : Hit 3: [19.2635, -33.3653, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 58.3892, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5049.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2214 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [96.8541, -12.512, 14] + [ ecalVeto ] 0 : Hit 1: [94.4462, -8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [96.8541, -4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [94.4462, -2.66454e-15, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5296.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2215 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5387.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2216 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, -29.1946, 31] + [ ecalVeto ] 0 : Hit 1: [-181.132, -33.3653, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 1] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6626.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2217 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4741.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2218 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -58.3892, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -54.2186, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6931.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2219 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, 25.024, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7368.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2220 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 50.0479, 33] + [ ecalVeto ] 0 : Hit 1: [24.0793, 50.0479, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 87.5839, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 83.4132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 79.2426, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 75.0719, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 70.9012, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1977.89; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2221 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3625.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2222 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2081.71; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2223 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7957.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2224 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, 115.158, 28] + [ ecalVeto ] 0 : Hit 1: [44.8152, 110.987, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -81.7928, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -79.2426, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 8.34132, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4317.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2225 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [154.644, 54.2186, 28] + [ ecalVeto ] 0 : Hit 1: [152.237, 50.0479, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, -20.8533, 27] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 26] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 25] + [ ecalVeto ] 0 : Hit 3: [33.711, -8.34132, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [132.973, 33.3653, 24] + [ ecalVeto ] 0 : Hit 1: [130.565, 29.1946, 23] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [38.5269, -2.66454e-15, 23] + [ ecalVeto ] 0 : Hit 1: [40.9348, 4.17066, 22] + [ ecalVeto ] 0 : Hit 2: [38.5269, 8.34132, 21] + [ ecalVeto ] 0 : Hit 3: [40.9348, 4.17066, 20] + [ ecalVeto ] 0 : Hit 4: [38.5269, -2.66454e-15, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, -12.512, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, -8.34132, 13] + [ ecalVeto ] 0 : Hit 4: [26.4873, -12.512, 12] + [ ecalVeto ] 0 : Hit 5: [24.0793, -16.6826, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [77.0538, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [74.6459, 4.17066, 13] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, -37.5359, 1] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3360.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2226 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, -106.817, 16] + [ ecalVeto ] 0 : Hit 1: [-11.1041, -102.646, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, -37.5359, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, -33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5839.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2227 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, -131.841, 23] + [ ecalVeto ] 0 : Hit 1: [-131.501, -127.67, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, -119.329, 21] + [ ecalVeto ] 0 : Hit 1: [-124.277, -115.158, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, -81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-102.606, -77.6221, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5855.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2228 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-116.118, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-118.525, 8.34132, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4713.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2229 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, -156.865, 27] + [ ecalVeto ] 0 : Hit 1: [-145.948, -152.694, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, -140.182, 25] + [ ecalVeto ] 0 : Hit 1: [-131.501, -136.011, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, -115.158, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, -110.987, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -106.817, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -102.646, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -94.3048, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 6: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7001.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2230 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 14805.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2231 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5284.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2232 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5766.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2233 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2493.61; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2234 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, -60.9395, 26] + [ ecalVeto ] 0 : Hit 1: [95.3817, -56.7688, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -16.6826, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [-69.83, -12.512, 13] + [ ecalVeto ] 0 : Hit 3: [-67.4221, -8.34132, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6147.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2235 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [112.237, 110.987, 14] + [ ecalVeto ] 0 : Hit 1: [109.829, 106.817, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4521.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2236 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 152.694, 33] + [ ecalVeto ] 0 : Hit 1: [-138.725, 148.523, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, 140.182, 31] + [ ecalVeto ] 0 : Hit 1: [-131.501, 136.011, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [76.1183, -81.7928, 28] + [ ecalVeto ] 0 : Hit 1: [73.7103, -85.9634, 27] + [ ecalVeto ] 0 : Hit 2: [76.1183, -90.1341, 26] + [ ecalVeto ] 0 : Hit 3: [73.7103, -94.3048, 25] + [ ecalVeto ] 0 : Hit 4: [76.1183, -90.1341, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-112.237, 119.329, 27] + [ ecalVeto ] 0 : Hit 1: [-109.829, 115.158, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3524.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2237 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, -161.035, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, -156.865, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -94.3048, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -77.6221, 15] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -73.4515, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4501.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2238 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3215.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2239 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5112.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2240 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-166.684, 25.024, 24] + [ ecalVeto ] 0 : Hit 1: [-169.092, 29.1946, 23] + [ ecalVeto ] 0 : Hit 2: [-166.684, 25.024, 22] + [ ecalVeto ] 0 : Hit 3: [-166.684, 25.024, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, 29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-152.237, 25.024, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-137.789, 16.6826, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-104.078, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-101.67, 4.17066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4861.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2241 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [69.83, 20.8533, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 112 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5495.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2242 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-152.237, -41.7066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-130.565, -37.5359, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 66.7306, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3011.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2243 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4456.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2244 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [-31.3031, -4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4381.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2245 Brem photon produced 85 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 119.329, 27] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 115.158, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -29.1946, 25] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -25.024, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 85.9634, 21] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 90.1341, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 54.2186, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 50.0479, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4141.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2246 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, -52.5982, 28] + [ ecalVeto ] 0 : Hit 1: [81.8697, -50.0479, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3703.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2247 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, -8.34132, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -45.8773, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5179.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2248 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [169.092, -87.5839, 28] + [ ecalVeto ] 0 : Hit 1: [166.684, -83.4132, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [147.421, -58.3892, 24] + [ ecalVeto ] 0 : Hit 1: [145.013, -54.2186, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [140.197, -45.8773, 22] + [ ecalVeto ] 0 : Hit 1: [137.789, -41.7066, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-105.013, 90.1341, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, 85.9634, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [132.973, -33.3653, 20] + [ ecalVeto ] 0 : Hit 1: [130.565, -29.1946, 19] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 85.9634, 17] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 77.6221, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-73.7103, 85.9634, 12] + [ ecalVeto ] 0 : Hit 1: [-76.1183, 90.1341, 11] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4140.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2249 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -173.547, 16] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -169.377, 15] + [ ecalVeto ] 0 : Hit 2: [-37.5914, -173.547, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5974.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2250 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 58.3892, 25] + [ ecalVeto ] 0 : Hit 1: [-116.118, 54.2186, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, 50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, 45.8773, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5614.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2251 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -115.158, 17] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -110.987, 16] + [ ecalVeto ] 0 : Hit 2: [-3.88031, -106.817, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -90.1341, 17] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -94.3048, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 144.353, 7] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 148.523, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3793.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2252 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 18] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 14] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 13] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 6: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 7: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 8: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 9: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 10: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 11: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 12: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 13: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 14: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 15: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 16: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 16] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 7: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 8: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7276.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2253 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, -127.67, 29] + [ ecalVeto ] 0 : Hit 1: [-138.725, -131.841, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, -131.841, 25] + [ ecalVeto ] 0 : Hit 1: [-117.053, -136.011, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -152.694, 24] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -148.523, 23] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3906.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2254 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, -106.817, 25] + [ ecalVeto ] 0 : Hit 1: [11.1041, -102.646, 24] + [ ecalVeto ] 0 : Hit 2: [8.69618, -98.4754, 23] + [ ecalVeto ] 0 : Hit 3: [11.1041, -94.3048, 22] + [ ecalVeto ] 0 : Hit 4: [9.63173, -91.7545, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -91.7545, 20] + [ ecalVeto ] 0 : Hit 1: [2.40793, -87.5839, 19] + [ ecalVeto ] 0 : Hit 2: [4.81586, -83.4132, 18] + [ ecalVeto ] 0 : Hit 3: [2.40793, -79.2426, 17] + [ ecalVeto ] 0 : Hit 4: [4.81586, -75.0719, 16] + [ ecalVeto ] 0 : Hit 5: [2.40793, -70.9012, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -66.7306, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -62.5599, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -62.5599, 10] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -58.3892, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -58.3892, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5190.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2255 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -206.913, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -202.742, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -161.035, 9] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -156.865, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5939.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2256 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3843.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2257 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 75.0719, 20] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 70.9012, 19] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 75.0719, 18] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 70.9012, 17] + [ ecalVeto ] 0 : Hit 4: [-24.0793, 66.7306, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 7] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5653.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2258 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 7] + [ ecalVeto ] 0 : Hit 1: [-101.67, -4.17066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5659.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2259 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 69.2808, 27] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 73.4515, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 73.4515, 25] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 77.6221, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 90.1341, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -77.6221, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4780.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2260 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4295.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2261 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, -94.3048, 18] + [ ecalVeto ] 0 : Hit 1: [66.4865, -90.1341, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3679.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2262 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, -115.158, 30] + [ ecalVeto ] 0 : Hit 1: [76.1183, -115.158, 28] + [ ecalVeto ] 0 : Hit 2: [73.7103, -110.987, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 826.442; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2263 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [88.1579, 244.449, 27] + [ ecalVeto ] 0 : Hit 1: [90.5659, 240.278, 26] + [ ecalVeto ] 0 : Hit 2: [88.1579, 244.449, 25] + [ ecalVeto ] 0 : Hit 3: [90.5659, 240.278, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [80.9341, 240.278, 23] + [ ecalVeto ] 0 : Hit 1: [83.3421, 236.107, 22] + [ ecalVeto ] 0 : Hit 2: [80.9341, 231.937, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 122 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5984.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2264 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [119.461, -115.158, 28] + [ ecalVeto ] 0 : Hit 1: [117.053, -110.987, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [112.237, -110.987, 26] + [ ecalVeto ] 0 : Hit 1: [109.829, -106.817, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [112.237, -94.3048, 24] + [ ecalVeto ] 0 : Hit 1: [109.829, -90.1341, 23] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-140.197, 79.2426, 17] + [ ecalVeto ] 0 : Hit 1: [-138.725, 81.7928, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-102.606, 94.3048, 14] + [ ecalVeto ] 0 : Hit 1: [-105.013, 90.1341, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4885.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2265 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 33.3653, 26] + [ ecalVeto ] 0 : Hit 1: [-69.83, 29.1946, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 29.1946, 24] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 25.024, 23] + [ ecalVeto ] 0 : Hit 2: [-60.1983, 20.8533, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5609.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2266 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 17 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3972.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2267 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, 56.7688, 12] + [ ecalVeto ] 0 : Hit 1: [74.6459, 54.2186, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 41.7066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6989.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2268 Brem photon produced 77 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5179.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2269 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 20] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 18] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 17] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 16] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 15] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 14] + [ ecalVeto ] 0 : Hit 6: [9.63173, -8.34132, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4853.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2270 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 94.3048, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 91.7545, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -106.817, 15] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -102.646, 14] + [ ecalVeto ] 0 : Hit 2: [-32.7755, -98.4754, 13] + [ ecalVeto ] 0 : Hit 3: [-30.3676, -102.646, 12] + [ ecalVeto ] 0 : Hit 4: [-32.7755, -98.4754, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3408.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2271 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, 165.206, 32] + [ ecalVeto ] 0 : Hit 1: [88.1579, 161.035, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, 79.2426, 13] + [ ecalVeto ] 0 : Hit 1: [33.711, 75.0719, 12] + [ ecalVeto ] 0 : Hit 2: [31.3031, 70.9012, 11] + [ ecalVeto ] 0 : Hit 3: [33.711, 66.7306, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3942.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2272 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6857.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2273 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4913.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2274 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 27] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 69.2808, 23] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 66.7306, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 16] + [ ecalVeto ] 0 : Hit 2: [-33.711, 33.3653, 15] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 29.1946, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3992.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2275 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5002.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2276 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2771.25; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2277 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [15.92, -144.353, 23] + [ ecalVeto ] 0 : Hit 1: [18.3279, -140.182, 22] + [ ecalVeto ] 0 : Hit 2: [15.92, -136.011, 21] + [ ecalVeto ] 0 : Hit 3: [18.3279, -131.841, 20] + [ ecalVeto ] 0 : Hit 4: [15.92, -127.67, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [11.1041, -102.646, 16] + [ ecalVeto ] 0 : Hit 1: [8.69618, -98.4754, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6056.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2278 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -106.817, 15] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -102.646, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -94.3048, 13] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -90.1341, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3568.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2279 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2919.09; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2280 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4040.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2281 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3790.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2282 Brem photon produced 89 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 127.67, 21] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 131.841, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 70.9012, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 62.5599, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 58.3892, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 62.5599, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3864.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2283 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 110.987, 3] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 115.158, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3437.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2284 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 81.7928, 29] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 85.9634, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 58.3892, 24] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 54.2186, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [40.9348, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [38.5269, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [40.9348, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [38.5269, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [33.711, -33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [33.711, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5451.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2285 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2964.25; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2286 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, -123.499, 18] + [ ecalVeto ] 0 : Hit 1: [30.3676, -119.329, 17] + [ ecalVeto ] 0 : Hit 2: [32.7755, -115.158, 16] + [ ecalVeto ] 0 : Hit 3: [30.3676, -110.987, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -70.9012, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -66.7306, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -62.5599, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -58.3892, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [37.5914, -198.571, 1] + [ ecalVeto ] 0 : Hit 1: [39.9993, -202.742, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2941.78; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2287 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-190.763, -8.34132, 23] + [ ecalVeto ] 0 : Hit 1: [-188.356, -4.17066, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-169.092, -4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-166.684, -2.36672e-14, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-147.421, -2.36672e-14, 19] + [ ecalVeto ] 0 : Hit 1: [-145.013, 4.17066, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-125.749, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-123.341, 8.34132, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4119.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2288 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-131.501, -127.67, 6] + [ ecalVeto ] 0 : Hit 1: [-133.909, -123.499, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [19.2635, -41.7066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6015.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2289 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5051.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2290 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4790.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2291 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [33.711, 50.0479, 14] + [ ecalVeto ] 0 : Hit 2: [31.3031, 54.2186, 13] + [ ecalVeto ] 0 : Hit 3: [33.711, 58.3892, 12] + [ ecalVeto ] 0 : Hit 4: [31.3031, 62.5599, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 62.5599, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 54.2186, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6218.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2292 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, 79.2426, 31] + [ ecalVeto ] 0 : Hit 1: [-137.789, 75.0719, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [133.909, -156.865, 26] + [ ecalVeto ] 0 : Hit 1: [131.501, -152.694, 25] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1946.7; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2293 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-80.9341, -56.7688, 12] + [ ecalVeto ] 0 : Hit 1: [-83.3421, -52.5982, 11] + [ ecalVeto ] 0 : Hit 2: [-81.8697, -50.0479, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 8: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Hit 9: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4415.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2294 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 62.5599, 24] + [ ecalVeto ] 0 : Hit 1: [38.5269, 58.3892, 23] + [ ecalVeto ] 0 : Hit 2: [40.9348, 54.2186, 22] + [ ecalVeto ] 0 : Hit 3: [38.5269, 58.3892, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [33.711, 50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [31.3031, 45.8773, 17] + [ ecalVeto ] 0 : Hit 3: [33.711, 41.7066, 16] + [ ecalVeto ] 0 : Hit 4: [31.3031, 37.5359, 15] + [ ecalVeto ] 0 : Hit 5: [33.711, 33.3653, 14] + [ ecalVeto ] 0 : Hit 6: [31.3031, 29.1946, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 16] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 37.5359, 15] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3925.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2295 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6821.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2296 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -85.9634, 29] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -90.1341, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -169.377, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -165.206, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 20] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -45.8773, 19] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -41.7066, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [-33.711, -16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -12.512, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4218.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2297 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 20] + [ ecalVeto ] 0 : Hit 2: [-33.711, 41.7066, 19] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 45.8773, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 2] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 1] + [ ecalVeto ] 0 : Hit 3: [33.711, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3909.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2298 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -16.6826, 27] + [ ecalVeto ] 0 : Hit 1: [-101.67, -12.512, 26] + [ ecalVeto ] 0 : Hit 2: [-104.078, -16.6826, 25] + [ ecalVeto ] 0 : Hit 3: [-101.67, -12.512, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3894.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2299 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2181.21; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2300 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, -110.987, 21] + [ ecalVeto ] 0 : Hit 1: [-124.277, -106.817, 20] + [ ecalVeto ] 0 : Hit 2: [-126.685, -102.646, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3656.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2301 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3084.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2302 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6220.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2303 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 94.3048, 15] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 90.1341, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 6: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 8: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 9: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9654.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2304 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, 16.6826, 19] + [ ecalVeto ] 0 : Hit 2: [38.5269, 16.6826, 17] + [ ecalVeto ] 0 : Hit 3: [40.9348, 12.512, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [52.9745, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [52.9745, 16.6826, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 6: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 123 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4307.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2305 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8307.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2306 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 17] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 16] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 15] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 14] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 12] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 11] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 10] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6518.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2307 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5563.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2308 Brem photon produced 4 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2651.85; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2309 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [69.83, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [67.4221, 50.0479, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6190.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2310 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 25] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 66.7306, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6372.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2311 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -198.571, 29] + [ ecalVeto ] 0 : Hit 1: [-15.92, -202.742, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -94.3048, 21] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -90.1341, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -81.7928, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3705.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2312 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -50.0479, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5916.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2313 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-73.7103, 77.6221, 20] + [ ecalVeto ] 0 : Hit 1: [-76.1183, 73.4515, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3667.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2314 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 28] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 27] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -102.646, 11] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -98.4754, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -83.4132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -79.2426, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2370.27; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2315 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 26] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 25] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 24] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 23] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 22] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 21] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 20] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 19] + [ ecalVeto ] 0 : Hit 8: [4.81586, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 9: [2.40793, -4.17066, 17] + [ ecalVeto ] 0 : Hit 10: [4.81586, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 11: [2.40793, -4.17066, 15] + [ ecalVeto ] 0 : Hit 12: [4.81586, -8.34132, 14] + [ ecalVeto ] 0 : Hit 13: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Hit 14: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 15: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 16: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 17: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -66.7306, 20] + [ ecalVeto ] 0 : Hit 1: [4.81586, -66.7306, 18] + [ ecalVeto ] 0 : Hit 2: [2.40793, -62.5599, 17] + [ ecalVeto ] 0 : Hit 3: [4.81586, -66.7306, 16] + [ ecalVeto ] 0 : Hit 4: [2.40793, -62.5599, 15] + [ ecalVeto ] 0 : Hit 5: [4.81586, -58.3892, 14] + [ ecalVeto ] 0 : Hit 6: [2.40793, -54.2186, 13] + [ ecalVeto ] 0 : Hit 7: [2.40793, -54.2186, 11] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -54.2186, 12] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 12: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Hit 13: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 14: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 15: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 16: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 17: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, -45.8773, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 15] + [ ecalVeto ] 0 : Hit 4: [9.63173, -41.7066, 13] + [ ecalVeto ] 0 : Hit 5: [12.0397, -45.8773, 12] + [ ecalVeto ] 0 : Hit 6: [4.81586, -41.7066, 14] + [ ecalVeto ] 0 : Hit 7: [4.81586, -41.7066, 12] + [ ecalVeto ] 0 : Hit 8: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Hit 9: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 10: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -62.5599, 9] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -58.3892, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2914.24; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2316 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5125.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2317 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [-130.565, 62.5599, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -25.024, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -12.512, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5102.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2318 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [169.092, 29.1946, 32] + [ ecalVeto ] 0 : Hit 1: [166.684, 25.024, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [154.644, 20.8533, 30] + [ ecalVeto ] 0 : Hit 1: [152.237, 16.6826, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -152.694, 29] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -148.523, 28] + [ ecalVeto ] 0 : Hit 2: [-11.1041, -144.353, 27] + [ ecalVeto ] 0 : Hit 3: [-8.69618, -140.182, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -127.67, 25] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -123.499, 24] + [ ecalVeto ] 0 : Hit 2: [-11.1041, -119.329, 23] + [ ecalVeto ] 0 : Hit 3: [-8.69618, -115.158, 22] + [ ecalVeto ] 0 : Hit 4: [-11.1041, -110.987, 21] + [ ecalVeto ] 0 : Hit 5: [-8.69618, -106.817, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2696.95; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2319 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -90.1341, 15] + [ ecalVeto ] 0 : Hit 1: [-117.053, -94.3048, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -65.1101, 11] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -60.9395, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5395.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2320 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 115.158, 23] + [ ecalVeto ] 0 : Hit 1: [-102.606, 110.987, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, -79.2426, 21] + [ ecalVeto ] 0 : Hit 1: [-137.789, -75.0719, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, -58.3892, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4661.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2321 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 66.7306, 22] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 62.5599, 21] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 58.3892, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5622.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2322 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2322 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 45.8773, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -90.1341, 4] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -85.9634, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7182.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2323 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5202.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2324 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, 73.4515, 14] + [ ecalVeto ] 0 : Hit 1: [88.1579, 69.2808, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-88.1579, -60.9395, 12] + [ ecalVeto ] 0 : Hit 1: [-90.5659, -56.7688, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-82.4065, -45.8773, 11] + [ ecalVeto ] 0 : Hit 3: [-81.8697, -50.0479, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -33.3653, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-74.6459, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-69.83, -37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [-67.4221, -33.3653, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5957.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2325 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4891.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2326 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -75.0719, 18] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -70.9012, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2948.66; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2327 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -131.841, 29] + [ ecalVeto ] 0 : Hit 1: [-102.606, -127.67, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, -115.158, 27] + [ ecalVeto ] 0 : Hit 1: [-102.606, -110.987, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -77.6221, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -65.1101, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -60.9395, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -52.5982, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -50.0479, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [16.8555, -12.512, 3] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 6] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5204.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2328 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 16] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 16.6826, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -81.7928, 16] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -77.6221, 15] + [ ecalVeto ] 0 : Hit 2: [-37.5914, -81.7928, 14] + [ ecalVeto ] 0 : Hit 3: [-39.9993, -77.6221, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -70.9012, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7423.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2329 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [73.7103, 119.329, 29] + [ ecalVeto ] 0 : Hit 1: [76.1183, 115.158, 28] + [ ecalVeto ] 0 : Hit 2: [73.7103, 110.987, 27] + [ ecalVeto ] 0 : Hit 3: [76.1183, 106.817, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-159.46, 20.8533, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-137.789, 25.024, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-116.118, 20.8533, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -65.1101, 9] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -65.1101, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2821.75; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2330 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 1: [55.3824, 4.17066, 18] + [ ecalVeto ] 0 : Hit 2: [52.9745, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 3: [55.3824, -4.17066, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4815.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2331 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -227.766, 27] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -223.595, 26] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1538.07; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2332 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6513.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2333 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4319.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2334 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, -16.6826, 12] + [ ecalVeto ] 0 : Hit 5: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6257.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2335 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-248.554, -2.36672e-14, 17] + [ ecalVeto ] 0 : Hit 1: [-246.146, 4.17066, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-241.33, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-238.922, 8.34132, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4308.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2336 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4331.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2337 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -33.3653, 24] + [ ecalVeto ] 0 : Hit 1: [31.3031, -37.5359, 23] + [ ecalVeto ] 0 : Hit 2: [33.711, -33.3653, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [26.4873, -29.1946, 20] + [ ecalVeto ] 0 : Hit 2: [24.0793, -33.3653, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-81.8697, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 4.17066, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-101.67, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-104.078, -41.7066, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [40.9348, 70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, 66.7306, 11] + [ ecalVeto ] 0 : Hit 2: [40.9348, 70.9012, 10] + [ ecalVeto ] 0 : Hit 3: [38.5269, 66.7306, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4821.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2338 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2895.45; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2339 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4542.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2340 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4104.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2341 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4301.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2342 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 4.17066, 26] + [ ecalVeto ] 0 : Hit 1: [38.5269, -2.66454e-15, 25] + [ ecalVeto ] 0 : Hit 2: [38.5269, -2.66454e-15, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [40.9348, 20.8533, 24] + [ ecalVeto ] 0 : Hit 2: [38.5269, 16.6826, 23] + [ ecalVeto ] 0 : Hit 3: [40.9348, 12.512, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3246.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2343 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -20.8533, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2978.44; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2344 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4767.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2345 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -75.0719, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -79.2426, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -75.0719, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5806.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2346 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6379.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2347 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6110.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2348 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 1] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6201.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2349 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 41.7066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [26.4873, 79.2426, 4] + [ ecalVeto ] 0 : Hit 1: [24.0793, 75.0719, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4647.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2350 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [45.7507, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [45.7507, -29.1946, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5133.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2351 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4902.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2352 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2914.24; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2353 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, -85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [32.7755, -90.1341, 18] + [ ecalVeto ] 0 : Hit 2: [30.3676, -85.9634, 17] + [ ecalVeto ] 0 : Hit 3: [32.7755, -90.1341, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [32.7755, -81.7928, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, -79.2426, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, -75.0719, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, -79.2426, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -75.0719, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, -70.9012, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, -66.7306, 13] + [ ecalVeto ] 0 : Hit 4: [26.4873, -70.9012, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2699.17; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2354 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -20.8533, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1942.61; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2355 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2355 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 24 + [ ecalVeto ] 0 : Beginning track merging using 24 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 22 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [66.4865, 73.4515, 25] + [ ecalVeto ] 0 : Hit 1: [68.8945, 69.2808, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 62.5599, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 50.0479, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 12] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 37.5359, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 37.5359, 11] + [ ecalVeto ] 0 : Hit 4: [-24.0793, 41.7066, 10] + [ ecalVeto ] 0 : Hit 5: [-26.4873, 37.5359, 9] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 54.2186, 11] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-33.711, 41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 45.8773, 8] + [ ecalVeto ] 0 : Hit 4: [-31.3031, 37.5359, 10] + [ ecalVeto ] 0 : Hit 5: [-33.711, 33.3653, 9] + [ ecalVeto ] 0 : Hit 6: [-31.3031, 29.1946, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 33.3653, 8] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 20.8533, 7] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Track 21: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 22 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4059.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2356 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 148.523, 13] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 144.353, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 7: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4057.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2357 Brem photon produced 80 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [16.8555, -12.512, 3] + [ ecalVeto ] 0 : Hit 7: [19.2635, -16.6826, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 58.3892, 4] + [ ecalVeto ] 0 : Hit 1: [-69.83, 54.2186, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6318.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2358 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 20] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 19] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 20] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 19] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 18] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4485.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2359 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 37.5359, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 16.6826, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 29.1946, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 33.3653, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-33.711, 8.34132, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7242.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2360 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -123.499, 32] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -119.329, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 90.1341, 31] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 90.1341, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 2] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 37.5359, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 17 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2940.62; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2361 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -58.3892, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4527.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2362 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 69.2808, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 73.4515, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 73.4515, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 69.2808, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 65.1101, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 62.5599, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -69.2808, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 58.3892, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [38.5269, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [40.9348, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [38.5269, 16.6826, 1] + [ ecalVeto ] 0 : Hit 3: [40.9348, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4028.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2363 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 1] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5285.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2364 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3841.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2365 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2365 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, -115.158, 21] + [ ecalVeto ] 0 : Hit 1: [-160.396, -119.329, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [67.4221, 50.0479, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7111.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2366 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 119.329, 18] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 115.158, 17] + [ ecalVeto ] 0 : Hit 2: [-44.8152, 110.987, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5371.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2367 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 17] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 16] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 15] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 14] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 9: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 10: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 11: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 12: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 13: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 14: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 14] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3467.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2368 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, -85.9634, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, -81.7928, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -66.7306, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5939.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2369 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6867.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2370 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 3] + [ ecalVeto ] 0 : Hit 2: [26.4873, -12.512, 2] + [ ecalVeto ] 0 : Hit 3: [24.0793, -16.6826, 1] + [ ecalVeto ] 0 : Hit 4: [24.0793, -8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [24.0793, -8.34132, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [24.0793, -50.0479, 1] + [ ecalVeto ] 0 : Hit 1: [26.4873, -54.2186, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5916.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2371 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, -123.499, 24] + [ ecalVeto ] 0 : Hit 1: [-11.1041, -119.329, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-15.92, -119.329, 22] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -115.158, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -115.158, 20] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -110.987, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [26.4873, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3990.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2372 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [55.3824, -37.5359, 16] + [ ecalVeto ] 0 : Hit 2: [52.9745, -33.3653, 15] + [ ecalVeto ] 0 : Hit 3: [52.9745, -33.3653, 13] + [ ecalVeto ] 0 : Hit 4: [55.3824, -37.5359, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, -41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [40.9348, -37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [38.5269, -33.3653, 13] + [ ecalVeto ] 0 : Hit 4: [40.9348, -29.1946, 12] + [ ecalVeto ] 0 : Hit 5: [38.5269, -25.024, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [48.1586, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [45.7507, -45.8773, 15] + [ ecalVeto ] 0 : Hit 2: [48.1586, -41.7066, 14] + [ ecalVeto ] 0 : Hit 3: [45.7507, -37.5359, 13] + [ ecalVeto ] 0 : Hit 4: [48.1586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 5: [45.7507, -29.1946, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [48.1586, -50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [48.1586, -50.0479, 14] + [ ecalVeto ] 0 : Hit 2: [45.7507, -45.8773, 13] + [ ecalVeto ] 0 : Hit 3: [48.1586, -50.0479, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [55.3824, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [52.9745, -41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [55.3824, -45.8773, 14] + [ ecalVeto ] 0 : Hit 3: [52.9745, -41.7066, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [55.3824, -62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [52.9745, -58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [55.3824, -54.2186, 14] + [ ecalVeto ] 0 : Hit 3: [52.9745, -50.0479, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6417.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2373 Brem photon produced 75 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4929.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2374 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -2.36672e-14, 7] + [ ecalVeto ] 0 : Hit 1: [-173.908, -4.17066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-190.763, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-188.356, -12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5166.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2375 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-123.341, -25.024, 24] + [ ecalVeto ] 0 : Hit 1: [-123.341, -25.024, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, -20.8533, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -8.34132, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5658.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2376 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 17] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 16] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 15] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 14] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Hit 9: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4874.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2377 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2377 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, -25.024, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -25.024, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5795.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2378 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 156.865, 20] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 152.694, 19] + [ ecalVeto ] 0 : Hit 2: [-8.69618, 148.523, 18] + [ ecalVeto ] 0 : Hit 3: [-11.1041, 144.353, 17] + [ ecalVeto ] 0 : Hit 4: [-8.69618, 140.182, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 140.182, 14] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 136.011, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 6: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 8: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 9: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4971.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2379 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-116.118, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3227.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2380 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 16] + [ ecalVeto ] 0 : Hit 2: [-33.711, 16.6826, 15] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 12.512, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6648.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2381 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [12.0397, 62.5599, 20] + [ ecalVeto ] 0 : Hit 2: [9.63173, 58.3892, 19] + [ ecalVeto ] 0 : Hit 3: [12.0397, 54.2186, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 17] + [ ecalVeto ] 0 : Hit 4: [19.2635, 25.024, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 16] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 15] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5681.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2382 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1480.9; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2383 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 231.937, 33] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 227.766, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [44.8152, -94.3048, 13] + [ ecalVeto ] 0 : Hit 1: [44.8152, -94.3048, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -75.0719, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, -70.9012, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, -75.0719, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -62.5599, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -58.3892, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6522.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2384 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4008.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2385 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 6: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 8: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 9: [16.8555, -37.5359, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, -37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, -41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [24.0793, -41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [24.0793, -41.7066, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -62.5599, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -58.3892, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -54.2186, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-112.237, -102.646, 5] + [ ecalVeto ] 0 : Hit 1: [-109.829, -98.4754, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-105.013, -90.1341, 5] + [ ecalVeto ] 0 : Hit 1: [-102.606, -94.3048, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 122 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6862.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2386 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [33.711, -50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [31.3031, -54.2186, 5] + [ ecalVeto ] 0 : Hit 3: [33.711, -50.0479, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1934.06; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2387 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -186.059, 25] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -181.889, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5043.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2388 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 19 + [ ecalVeto ] 0 : Beginning track merging using 19 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 16 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -148.523, 33] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -144.353, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -136.011, 31] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -131.841, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -123.499, 29] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -119.329, 28] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -119.329, 27] + [ ecalVeto ] 0 : Hit 1: [-52.039, -115.158, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -106.817, 25] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -102.646, 24] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -98.4754, 22] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -90.1341, 21] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -85.9634, 20] + [ ecalVeto ] 0 : Hit 2: [-32.7755, -81.7928, 19] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -79.2426, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 7: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 8: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [31.3031, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [33.711, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 9] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 7: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 8: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 9: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 10: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 16 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4273.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2389 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, -79.2426, 25] + [ ecalVeto ] 0 : Hit 1: [-152.237, -75.0719, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, -54.2186, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -20.8533, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -50.0479, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4572.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2390 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -215.254, 33] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -211.083, 32] + [ ecalVeto ] 0 : Hit 2: [-90.5659, -206.913, 31] + [ ecalVeto ] 0 : Hit 3: [-88.1579, -202.742, 30] + [ ecalVeto ] 0 : Hit 4: [-90.5659, -198.571, 29] + [ ecalVeto ] 0 : Hit 5: [-88.1579, -194.401, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -177.718, 25] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -173.547, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [66.4865, 181.889, 5] + [ ecalVeto ] 0 : Hit 1: [68.8945, 177.718, 4] + [ ecalVeto ] 0 : Hit 2: [66.4865, 181.889, 3] + [ ecalVeto ] 0 : Hit 3: [68.8945, 177.718, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4185.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2391 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-95.3817, -106.817, 14] + [ ecalVeto ] 0 : Hit 1: [-97.7897, -110.987, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9233.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2392 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2799.47; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2393 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-69.83, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5393.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2394 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 2] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 8.34132, 1] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 12.512, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 3] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 8.34132, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6739.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2395 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, 58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [67.4221, 58.3892, 13] + [ ecalVeto ] 0 : Hit 2: [69.83, 54.2186, 12] + [ ecalVeto ] 0 : Hit 3: [67.4221, 50.0479, 11] + [ ecalVeto ] 0 : Hit 4: [69.83, 45.8773, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2790.05; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2396 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [81.8697, 8.34132, 31] + [ ecalVeto ] 0 : Hit 1: [84.2776, 12.512, 30] + [ ecalVeto ] 0 : Hit 2: [81.8697, 8.34132, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [62.6062, -2.66454e-15, 24] + [ ecalVeto ] 0 : Hit 1: [60.1983, -4.17066, 23] + [ ecalVeto ] 0 : Hit 2: [62.6062, -8.34132, 22] + [ ecalVeto ] 0 : Hit 3: [60.1983, -4.17066, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [55.3824, -4.17066, 20] + [ ecalVeto ] 0 : Hit 1: [52.9745, -8.34132, 19] + [ ecalVeto ] 0 : Hit 2: [55.3824, -12.512, 18] + [ ecalVeto ] 0 : Hit 3: [52.9745, -8.34132, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 14] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3713.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2397 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5387.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2398 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [-33.711, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -45.8773, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -33.3653, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6111.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2399 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 181.889, 13] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 177.718, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 25.024, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4315.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2400 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-131.501, -186.059, 16] + [ ecalVeto ] 0 : Hit 1: [-133.909, -181.889, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4391.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2401 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.88031, -148.523, 18] + [ ecalVeto ] 0 : Hit 1: [3.34348, -144.353, 17] + [ ecalVeto ] 0 : Hit 2: [3.88031, -140.182, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -91.7545, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -87.5839, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5272.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2402 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2693.63; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2403 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, -81.7928, 18] + [ ecalVeto ] 0 : Hit 1: [47.2231, -81.7928, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4151.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2404 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3468.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2405 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5781.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2406 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, -50.0479, 25] + [ ecalVeto ] 0 : Hit 1: [-159.46, -45.8773, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 8: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [24.0793, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [26.4873, 45.8773, 4] + [ ecalVeto ] 0 : Hit 2: [26.4873, 45.8773, 2] + [ ecalVeto ] 0 : Hit 3: [24.0793, 41.7066, 1] + [ ecalVeto ] 0 : Hit 4: [26.4873, 37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6737.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2407 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, -65.1101, 28] + [ ecalVeto ] 0 : Hit 1: [102.606, -60.9395, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-176.316, 66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [-176.316, 66.7306, 13] + [ ecalVeto ] 0 : Hit 2: [-173.908, 70.9012, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, 58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-132.973, 58.3892, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2597.07; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2408 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7512.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2409 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, -62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, -58.3892, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5013.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2410 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5696.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2411 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [44.8152, 110.987, 29] + [ ecalVeto ] 0 : Hit 1: [44.8152, 110.987, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [39.9993, 110.987, 26] + [ ecalVeto ] 0 : Hit 1: [37.5914, 106.817, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [32.7755, 90.1341, 24] + [ ecalVeto ] 0 : Hit 1: [30.3676, 94.3048, 23] + [ ecalVeto ] 0 : Hit 2: [32.7755, 90.1341, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [25.5517, 85.9634, 22] + [ ecalVeto ] 0 : Hit 1: [23.1438, 90.1341, 21] + [ ecalVeto ] 0 : Hit 2: [25.5517, 85.9634, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 79.2426, 19] + [ ecalVeto ] 0 : Hit 1: [19.2635, 75.0719, 18] + [ ecalVeto ] 0 : Hit 2: [16.8555, 70.9012, 17] + [ ecalVeto ] 0 : Hit 3: [19.2635, 66.7306, 16] + [ ecalVeto ] 0 : Hit 4: [16.8555, 62.5599, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6567.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2412 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4179.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2413 Brem photon produced 78 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4781.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2414 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -70.9012, 9] + [ ecalVeto ] 0 : Hit 1: [31.3031, -70.9012, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5796.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2415 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-52.039, -81.7928, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -70.9012, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -62.5599, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5130.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2416 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, -90.1341, 18] + [ ecalVeto ] 0 : Hit 1: [47.2231, -90.1341, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4039.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2417 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3103.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2418 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2538.46; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2419 Brem photon produced 99 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, -85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-124.277, -81.7928, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 45.8773, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, 41.7066, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8967.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2420 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, 140.182, 28] + [ ecalVeto ] 0 : Hit 1: [30.3676, 136.011, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [15.92, 110.987, 23] + [ ecalVeto ] 0 : Hit 1: [18.3279, 115.158, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [11.1041, 94.3048, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, 91.7545, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, 87.5839, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, 83.4132, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4409.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2421 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -131.841, 30] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -127.67, 29] + [ ecalVeto ] 0 : Hit 2: [-37.5914, -123.499, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, 140.182, 27] + [ ecalVeto ] 0 : Hit 1: [-117.053, 136.011, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -115.158, 27] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -110.987, 26] + [ ecalVeto ] 0 : Hit 2: [-32.7755, -106.817, 25] + [ ecalVeto ] 0 : Hit 3: [-30.3676, -102.646, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -85.9634, 22] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -81.7928, 21] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -79.2426, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -54.2186, 15] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -50.0479, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4319.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2422 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 50.0479, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6647.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2423 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 165.206, 28] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 169.377, 27] + [ ecalVeto ] 0 : Hit 2: [-23.1438, 165.206, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-15.92, 136.011, 24] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 131.841, 23] + [ ecalVeto ] 0 : Hit 2: [-15.92, 127.67, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 87.5839, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 83.4132, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 79.2426, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 75.0719, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4411.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2424 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 29.1946, 13] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 25.024, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-69.83, 4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, 4.17066, 1] + [ ecalVeto ] 0 : Hit 1: [-123.341, -2.36672e-14, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7534.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2425 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, -81.7928, 5] + [ ecalVeto ] 0 : Hit 1: [-117.053, -85.9634, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1538.76; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2426 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 98.4754, 26] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 94.3048, 25] + [ ecalVeto ] 0 : Hit 2: [-37.5914, 90.1341, 24] + [ ecalVeto ] 0 : Hit 3: [-39.9993, 85.9634, 23] + [ ecalVeto ] 0 : Hit 4: [-37.5914, 81.7928, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 79.2426, 20] + [ ecalVeto ] 0 : Hit 2: [-33.711, 75.0719, 19] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 70.9012, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 66.7306, 16] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 62.5599, 15] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 58.3892, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 37.5359, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2866.88; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2427 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6671.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2428 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-81.8697, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 4.17066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -98.4754, 7] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -94.3048, 6] + [ ecalVeto ] 0 : Hit 2: [-47.2231, -90.1341, 5] + [ ecalVeto ] 0 : Hit 3: [-44.8152, -94.3048, 4] + [ ecalVeto ] 0 : Hit 4: [-47.2231, -90.1341, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2622.86; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2429 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -65.1101, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -54.2186, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6366.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2430 Brem photon produced 82 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3583.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2431 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2280.18; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2432 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1933.8; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2433 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3542.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2434 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2434 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8103.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2435 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 4: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 5: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5453.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2436 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, -102.646, 28] + [ ecalVeto ] 0 : Hit 1: [52.039, -98.4754, 27] + [ ecalVeto ] 0 : Hit 2: [54.4469, -102.646, 26] + [ ecalVeto ] 0 : Hit 3: [52.039, -98.4754, 25] + [ ecalVeto ] 0 : Hit 4: [54.4469, -94.3048, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 87.5839, 24] + [ ecalVeto ] 0 : Hit 1: [9.63173, 83.4132, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [44.8152, -94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [47.2231, -90.1341, 22] + [ ecalVeto ] 0 : Hit 2: [44.8152, -94.3048, 21] + [ ecalVeto ] 0 : Hit 3: [47.2231, -90.1341, 20] + [ ecalVeto ] 0 : Hit 4: [44.8152, -85.9634, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [39.9993, -85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [37.5914, -81.7928, 17] + [ ecalVeto ] 0 : Hit 2: [39.9993, -77.6221, 16] + [ ecalVeto ] 0 : Hit 3: [38.5269, -75.0719, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 13] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 12] + [ ecalVeto ] 0 : Hit 4: [16.8555, -12.512, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -54.2186, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -50.0479, 9] + [ ecalVeto ] 0 : Hit 4: [26.4873, -45.8773, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 10: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 11: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3158.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2437 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [40.9348, -62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [38.5269, -58.3892, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-123.341, -25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4279.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2438 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4309.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2439 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 10: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5457.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2440 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, -45.8773, 22] + [ ecalVeto ] 0 : Hit 1: [123.341, -41.7066, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4674.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2441 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5395.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2442 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 91.7545, 26] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 87.5839, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 45.8773, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4613.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2443 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4163.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2444 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [16.8555, 12.512, 3] + [ ecalVeto ] 0 : Hit 5: [19.2635, 8.34132, 2] + [ ecalVeto ] 0 : Hit 6: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 8: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 9: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Hit 10: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3575.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2445 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7410.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2446 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5265.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2447 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5017.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2448 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-109.829, -73.4515, 24] + [ ecalVeto ] 0 : Hit 1: [-112.237, -69.2808, 23] + [ ecalVeto ] 0 : Hit 2: [-109.829, -65.1101, 22] + [ ecalVeto ] 0 : Hit 3: [-111.302, -62.5599, 21] + [ ecalVeto ] 0 : Hit 4: [-108.894, -58.3892, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1849.15; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2449 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-166.684, -66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [-166.684, -66.7306, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-117.053, -77.6221, 12] + [ ecalVeto ] 0 : Hit 1: [-119.461, -73.4515, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-112.237, -77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [-109.829, -73.4515, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-112.237, -85.9634, 11] + [ ecalVeto ] 0 : Hit 1: [-109.829, -81.7928, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-125.749, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-125.749, -54.2186, 9] + [ ecalVeto ] 0 : Hit 2: [-123.341, -58.3892, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-118.525, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-116.118, -45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-118.525, -50.0479, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 115 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8119.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2450 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5044.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2451 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 58.3892, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 62.5599, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6723.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2452 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, 58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-159.46, 54.2186, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6029.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2453 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5376.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2454 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, -173.547, 19] + [ ecalVeto ] 0 : Hit 1: [-131.501, -169.377, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3638.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2455 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [45.7507, -62.5599, 15] + [ ecalVeto ] 0 : Hit 2: [48.1586, -58.3892, 14] + [ ecalVeto ] 0 : Hit 3: [45.7507, -54.2186, 13] + [ ecalVeto ] 0 : Hit 4: [48.1586, -50.0479, 12] + [ ecalVeto ] 0 : Hit 5: [48.1586, -50.0479, 10] + [ ecalVeto ] 0 : Hit 6: [45.7507, -45.8773, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4089.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2456 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [74.6459, -20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [77.0538, -16.6826, 22] + [ ecalVeto ] 0 : Hit 2: [74.6459, -20.8533, 21] + [ ecalVeto ] 0 : Hit 3: [77.0538, -16.6826, 20] + [ ecalVeto ] 0 : Hit 4: [77.0538, -16.6826, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5283.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2457 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -70.9012, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4331.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2458 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 83.4132, 29] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 83.4132, 27] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 79.2426, 26] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 75.0719, 25] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 70.9012, 24] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 66.7306, 23] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 62.5599, 22] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 58.3892, 21] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 54.2186, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 17] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 16] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 15] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 14] + [ ecalVeto ] 0 : Hit 6: [2.40793, 29.1946, 13] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 8: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 9: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 8: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 9: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 10: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 11: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6715.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2459 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4521.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2460 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2460 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, -45.8773, 26] + [ ecalVeto ] 0 : Hit 1: [123.341, -41.7066, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [111.302, -37.5359, 24] + [ ecalVeto ] 0 : Hit 1: [108.894, -33.3653, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6028.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2461 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -56.7688, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -60.9395, 22] + [ ecalVeto ] 0 : Hit 2: [-90.5659, -65.1101, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-95.3817, -65.1101, 20] + [ ecalVeto ] 0 : Hit 1: [-97.7897, -60.9395, 19] + [ ecalVeto ] 0 : Hit 2: [-95.3817, -65.1101, 18] + [ ecalVeto ] 0 : Hit 3: [-97.7897, -60.9395, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-101.67, -54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [-104.078, -50.0479, 13] + [ ecalVeto ] 0 : Hit 2: [-101.67, -45.8773, 12] + [ ecalVeto ] 0 : Hit 3: [-104.078, -41.7066, 11] + [ ecalVeto ] 0 : Hit 4: [-101.67, -45.8773, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -33.3653, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4477.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2462 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -66.7306, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [45.7507, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [48.1586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [45.7507, 20.8533, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 8: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5542.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2463 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [167.62, -123.499, 27] + [ ecalVeto ] 0 : Hit 1: [167.62, -123.499, 25] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4298.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2464 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5264.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2465 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, -144.353, 28] + [ ecalVeto ] 0 : Hit 1: [52.039, -140.182, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [47.2231, -123.499, 24] + [ ecalVeto ] 0 : Hit 1: [44.8152, -119.329, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [32.7755, -98.4754, 18] + [ ecalVeto ] 0 : Hit 1: [30.3676, -94.3048, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [25.5517, -94.3048, 16] + [ ecalVeto ] 0 : Hit 1: [23.1438, -90.1341, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -75.0719, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -70.9012, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -66.7306, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -62.5599, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3539.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2466 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 45.8773, 9] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4763.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2467 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2297.98; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2468 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4004.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2469 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4420.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2470 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [40.9348, -4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [38.5269, -8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [40.9348, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5503.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2471 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -12.512, 1] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -16.6826, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 33.3653, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3820.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2472 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3903.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2473 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3808.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2474 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4989.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2475 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4270.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2476 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3920.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2477 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [15.92, 152.694, 21] + [ ecalVeto ] 0 : Hit 1: [18.3279, 148.523, 20] + [ ecalVeto ] 0 : Hit 2: [15.92, 144.353, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 58.3892, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 115 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6246.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2478 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7335.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2479 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 22 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1636.17; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2480 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3102.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2481 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 33.3653, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3539.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2482 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8068.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2483 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7907.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2484 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, -106.817, 33] + [ ecalVeto ] 0 : Hit 1: [-160.396, -110.987, 32] + [ ecalVeto ] 0 : Hit 2: [-162.804, -115.158, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-141.132, -110.987, 29] + [ ecalVeto ] 0 : Hit 1: [-138.725, -106.817, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-126.685, -102.646, 27] + [ ecalVeto ] 0 : Hit 1: [-124.277, -98.4754, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-112.237, -94.3048, 25] + [ ecalVeto ] 0 : Hit 1: [-109.829, -90.1341, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-116.118, 20.8533, 24] + [ ecalVeto ] 0 : Hit 1: [-118.525, 16.6826, 23] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -85.9634, 23] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -81.7928, 22] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -73.4515, 20] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -65.1101, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -62.5599, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6363.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2485 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 16 + [ ecalVeto ] 0 : Beginning track merging using 16 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -215.254, 29] + [ ecalVeto ] 0 : Hit 1: [-117.053, -211.083, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-102.606, -94.3048, 28] + [ ecalVeto ] 0 : Hit 1: [-105.013, -90.1341, 27] + [ ecalVeto ] 0 : Hit 2: [-102.606, -85.9634, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, -206.913, 27] + [ ecalVeto ] 0 : Hit 1: [-102.606, -202.742, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -198.571, 25] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -194.401, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -177.718, 21] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -173.547, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -148.523, 17] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -144.353, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -127.67, 13] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -123.499, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 11] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3818.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2486 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-116.118, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-118.525, 16.6826, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4329.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2487 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -8.34132, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4647.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2488 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -45.8773, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3644.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2489 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 69.2808, 16] + [ ecalVeto ] 0 : Hit 1: [66.4865, 65.1101, 15] + [ ecalVeto ] 0 : Hit 2: [66.4865, 65.1101, 13] + [ ecalVeto ] 0 : Hit 3: [68.8945, 69.2808, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 12046.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2490 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2133.73; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2491 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 58.3892, 18] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 17] + [ ecalVeto ] 0 : Hit 2: [33.711, 50.0479, 16] + [ ecalVeto ] 0 : Hit 3: [31.3031, 45.8773, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6455.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2492 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5793.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2493 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [12.0397, 62.5599, 16] + [ ecalVeto ] 0 : Hit 2: [12.0397, 62.5599, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, 58.3892, 13] + [ ecalVeto ] 0 : Hit 4: [12.0397, 54.2186, 12] + [ ecalVeto ] 0 : Hit 5: [9.63173, 50.0479, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3389.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2494 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 22] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 21] + [ ecalVeto ] 0 : Hit 2: [4.81586, 66.7306, 20] + [ ecalVeto ] 0 : Hit 3: [2.40793, 70.9012, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 58.3892, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 54.2186, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3226.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2495 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [66.4865, 190.23, 29] + [ ecalVeto ] 0 : Hit 1: [68.8945, 186.059, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 28] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 27] + [ ecalVeto ] 0 : Hit 2: [19.2635, -58.3892, 26] + [ ecalVeto ] 0 : Hit 3: [16.8555, -54.2186, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [47.2231, 140.182, 22] + [ ecalVeto ] 0 : Hit 1: [44.8152, 136.011, 21] + [ ecalVeto ] 0 : Hit 2: [47.2231, 131.841, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4318.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2496 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 29.1946, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-15.92, -127.67, 12] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -123.499, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4674.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2497 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 50.0479, 25] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 24] + [ ecalVeto ] 0 : Hit 2: [9.63173, 50.0479, 23] + [ ecalVeto ] 0 : Hit 3: [12.0397, 45.8773, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 25] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 23] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 22] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 21] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 20] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 19] + [ ecalVeto ] 0 : Hit 6: [12.0397, 4.17066, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 22] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 21] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 20] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 19] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 18] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 17] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 16] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4302.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2498 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4428.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2499 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8937.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2500 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 169.377, 33] + [ ecalVeto ] 0 : Hit 1: [-138.725, 165.206, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, 165.206, 31] + [ ecalVeto ] 0 : Hit 1: [-131.501, 161.035, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-112.237, 144.353, 27] + [ ecalVeto ] 0 : Hit 1: [-109.829, 140.182, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 136.011, 25] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 131.841, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 102.646, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 106.817, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 75.0719, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4301.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2501 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 6: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 7: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 8: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 9: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 10: [4.81586, -25.024, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5056.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2502 Brem photon produced 78 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 110.987, 3] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 110.987, 1] + [ ecalVeto ] 0 : Hit 2: [-80.9341, 115.158, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4148.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2503 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3049.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2504 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5360.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2505 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2735.16; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2506 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [155.58, -102.646, 30] + [ ecalVeto ] 0 : Hit 1: [153.172, -98.4754, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-138.725, 98.4754, 14] + [ ecalVeto ] 0 : Hit 1: [-141.132, 94.3048, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3285.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2507 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, 69.2808, 26] + [ ecalVeto ] 0 : Hit 1: [95.3817, 65.1101, 25] + [ ecalVeto ] 0 : Hit 2: [97.7897, 69.2808, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [90.5659, 56.7688, 24] + [ ecalVeto ] 0 : Hit 1: [90.5659, 56.7688, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2947.68; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2508 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -65.1101, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -41.7066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -37.5359, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6040.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2509 Brem photon produced 5 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -54.2186, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -50.0479, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6155.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2510 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -29.1946, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11294.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2511 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2383.59; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2512 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -58.3892, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4598.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2513 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4489.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2514 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-108.894, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-111.302, -62.5599, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5434.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2515 Brem photon produced 83 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4998.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2516 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5615.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2517 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3978.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2518 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, 83.4132, 33] + [ ecalVeto ] 0 : Hit 1: [-145.013, 79.2426, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 75.0719, 31] + [ ecalVeto ] 0 : Hit 1: [-130.565, 70.9012, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, 62.5599, 27] + [ ecalVeto ] 0 : Hit 1: [-108.894, 58.3892, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-104.078, 50.0479, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, 45.8773, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 41.7066, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 33.3653, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3796.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2519 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -69.2808, 22] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -73.4515, 21] + [ ecalVeto ] 0 : Hit 2: [-73.7103, -77.6221, 20] + [ ecalVeto ] 0 : Hit 3: [-76.1183, -73.4515, 19] + [ ecalVeto ] 0 : Hit 4: [-73.7103, -77.6221, 18] + [ ecalVeto ] 0 : Hit 5: [-76.1183, -73.4515, 17] + [ ecalVeto ] 0 : Hit 6: [-73.7103, -77.6221, 16] + [ ecalVeto ] 0 : Hit 7: [-76.1183, -73.4515, 15] + [ ecalVeto ] 0 : Hit 8: [-73.7103, -77.6221, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -33.3653, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -58.3892, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5029.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2520 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-87.2224, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [-89.6303, -8.34132, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5806.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2521 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [69.83, -29.1946, 2] + [ ecalVeto ] 0 : Hit 1: [67.4221, -33.3653, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 1] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3443.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2522 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, 98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-1.47238, 102.646, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -8.34132, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5299.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2523 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -79.2426, 28] + [ ecalVeto ] 0 : Hit 1: [9.63173, -75.0719, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1278.59; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2524 Brem photon produced 5 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2513.43; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2525 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4492.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2526 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 90.1341, 17] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 87.5839, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [210.027, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [210.027, -41.7066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4817.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2527 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4234.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2528 Brem photon produced 98 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, -102.646, 18] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -98.4754, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6164.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2529 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.039, 165.206, 28] + [ ecalVeto ] 0 : Hit 1: [-54.4469, 161.035, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.039, 148.523, 26] + [ ecalVeto ] 0 : Hit 1: [-54.4469, 144.353, 25] + [ ecalVeto ] 0 : Hit 2: [-52.039, 140.182, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-154.644, -79.2426, 23] + [ ecalVeto ] 0 : Hit 1: [-152.237, -75.0719, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, -54.2186, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -33.3653, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2075.1; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2530 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2932.88; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2531 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -140.182, 30] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -136.011, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -25.024, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -37.5359, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5071.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2532 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 73.4515, 9] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 77.6221, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 58.3892, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-33.711, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6655.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2533 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 66.7306, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 62.5599, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-126.685, 119.329, 9] + [ ecalVeto ] 0 : Hit 1: [-124.277, 123.499, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-112.237, 110.987, 5] + [ ecalVeto ] 0 : Hit 1: [-109.829, 115.158, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7447.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2534 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [66.4865, -190.23, 7] + [ ecalVeto ] 0 : Hit 1: [68.8945, -186.059, 6] + [ ecalVeto ] 0 : Hit 2: [68.8945, -186.059, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3938.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2535 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7375.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2536 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7613.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2537 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 211.083, 33] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 206.913, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5966.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2538 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, 94.3048, 24] + [ ecalVeto ] 0 : Hit 1: [37.5914, 98.4754, 23] + [ ecalVeto ] 0 : Hit 2: [39.9993, 102.646, 22] + [ ecalVeto ] 0 : Hit 3: [37.5914, 98.4754, 21] + [ ecalVeto ] 0 : Hit 4: [37.5914, 98.4754, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [101.67, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [104.078, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 2: [101.67, -4.17066, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [48.1586, -33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [45.7507, -29.1946, 13] + [ ecalVeto ] 0 : Hit 2: [48.1586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [45.7507, -29.1946, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [26.4873, -20.8533, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 2] + [ ecalVeto ] 0 : Hit 4: [16.8555, -20.8533, 1] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 110.987, 5] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 106.817, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5762.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2539 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, 29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-108.894, 33.3653, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-147.421, 50.0479, 1] + [ ecalVeto ] 0 : Hit 1: [-145.013, 54.2186, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-140.197, 37.5359, 1] + [ ecalVeto ] 0 : Hit 1: [-137.789, 41.7066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8462.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2540 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2540 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-48.1586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [-45.7507, 45.8773, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5553.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2541 Brem photon produced 76 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5386.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2542 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -81.7928, 13] + [ ecalVeto ] 0 : Hit 1: [-117.053, -77.6221, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5646.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2543 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5352.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2544 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -156.865, 29] + [ ecalVeto ] 0 : Hit 1: [-102.606, -152.694, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -77.6221, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -65.1101, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5071.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2545 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [66.4865, 148.523, 29] + [ ecalVeto ] 0 : Hit 1: [66.4865, 148.523, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [97.7897, 169.377, 26] + [ ecalVeto ] 0 : Hit 1: [95.3817, 165.206, 25] + [ ecalVeto ] 0 : Hit 2: [97.7897, 161.035, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [73.7103, 202.742, 25] + [ ecalVeto ] 0 : Hit 1: [76.1183, 198.571, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [88.1579, 161.035, 25] + [ ecalVeto ] 0 : Hit 1: [90.5659, 156.865, 24] + [ ecalVeto ] 0 : Hit 2: [88.1579, 152.694, 23] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [73.7103, 136.011, 21] + [ ecalVeto ] 0 : Hit 1: [76.1183, 131.841, 20] + [ ecalVeto ] 0 : Hit 2: [73.7103, 127.67, 19] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3405.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2546 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [148.356, 90.1341, 22] + [ ecalVeto ] 0 : Hit 1: [145.948, 85.9634, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, -123.499, 21] + [ ecalVeto ] 0 : Hit 1: [-131.501, -119.329, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6268.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2547 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2617.81; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2548 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, 66.7306, 31] + [ ecalVeto ] 0 : Hit 1: [-159.46, 62.5599, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 37.5359, 27] + [ ecalVeto ] 0 : Hit 1: [-123.341, 33.3653, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, 29.1946, 25] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3929.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2549 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3954.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2550 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3019.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2551 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5578.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2552 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 73.4515, 18] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 69.2808, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1453.84; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2553 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -73.4515, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -69.2808, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 20] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -45.8773, 21] + [ ecalVeto ] 0 : Hit 3: [-55.3824, -45.8773, 19] + [ ecalVeto ] 0 : Hit 4: [-52.9745, -41.7066, 18] + [ ecalVeto ] 0 : Hit 5: [-55.3824, -45.8773, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 18] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -41.7066, 17] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -45.8773, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 14] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -29.1946, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2997.77; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2554 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 18] + [ ecalVeto ] 0 : Hit 2: [-33.711, 58.3892, 17] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 54.2186, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 14] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 37.5359, 13] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 33.3653, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 1] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2145.37; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2555 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5328.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2556 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -83.4132, 23] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -79.2426, 22] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -75.0719, 21] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -70.9012, 20] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -66.7306, 19] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -62.5599, 18] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -58.3892, 17] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -54.2186, 16] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -50.0479, 15] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -45.8773, 14] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -41.7066, 13] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -37.5359, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6591.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2557 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 15] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 81.7928, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 90.1341, 13] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 85.9634, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 85.9634, 11] + [ ecalVeto ] 0 : Hit 1: [-52.039, 90.1341, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3448.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2558 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -127.67, 30] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -123.499, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -45.8773, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10881.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2559 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, -33.3653, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4061.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2560 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4179.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2561 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 165.206, 16] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 161.035, 15] + [ ecalVeto ] 0 : Hit 2: [-8.69618, 156.865, 14] + [ ecalVeto ] 0 : Hit 3: [-8.69618, 156.865, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6094.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2562 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -77.6221, 25] + [ ecalVeto ] 0 : Hit 1: [-52.039, -73.4515, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4818.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2563 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4890.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2564 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 136.011, 25] + [ ecalVeto ] 0 : Hit 1: [-52.039, 140.182, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 110.987, 18] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 106.817, 17] + [ ecalVeto ] 0 : Hit 2: [-30.3676, 102.646, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 90.1341, 14] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 85.9634, 13] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 83.4132, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 75.0719, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 70.9012, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 66.7306, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 62.5599, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 16.6826, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 94.3048, 1] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 98.4754, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5963.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2565 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-190.763, 83.4132, 17] + [ ecalVeto ] 0 : Hit 1: [-188.356, 79.2426, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3845.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2566 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 18 + [ ecalVeto ] 0 : Beginning track merging using 18 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 17 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 136.011, 28] + [ ecalVeto ] 0 : Hit 1: [-61.6707, 131.841, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-66.4865, 131.841, 26] + [ ecalVeto ] 0 : Hit 1: [-68.8945, 127.67, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 131.841, 25] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 127.67, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-126.685, -94.3048, 25] + [ ecalVeto ] 0 : Hit 1: [-124.277, -90.1341, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 119.329, 23] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 115.158, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-119.461, -81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, -77.6221, 22] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 106.817, 21] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 102.646, 20] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-112.237, -69.2808, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, -65.1101, 20] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-52.039, 90.1341, 18] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -41.7066, 16] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [38.5269, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [40.9348, 12.512, 14] + [ ecalVeto ] 0 : Hit 2: [38.5269, 8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [40.9348, 12.512, 12] + [ ecalVeto ] 0 : Hit 4: [38.5269, 16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [38.5269, 16.6826, 9] + [ ecalVeto ] 0 : Hit 6: [33.711, 16.6826, 10] + [ ecalVeto ] 0 : Hit 7: [33.711, 16.6826, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 14] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [48.1586, -66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [45.7507, -62.5599, 11] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 10] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 17 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5056.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2567 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5138.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2568 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 10: [4.81586, 8.34132, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5532.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2569 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, -131.841, 26] + [ ecalVeto ] 0 : Hit 1: [-11.1041, -127.67, 25] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4691.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2570 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-102.606, 69.2808, 22] + [ ecalVeto ] 0 : Hit 1: [-105.013, 73.4515, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 69.2808, 21] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 65.1101, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 60.9395, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 56.7688, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 54.2186, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 14] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 29.1946, 13] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 25.024, 12] + [ ecalVeto ] 0 : Hit 4: [-40.9348, 29.1946, 11] + [ ecalVeto ] 0 : Hit 5: [-38.5269, 25.024, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [38.5269, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [40.9348, -29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [38.5269, -25.024, 11] + [ ecalVeto ] 0 : Hit 3: [40.9348, -20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [38.5269, -16.6826, 9] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [112.237, 85.9634, 10] + [ ecalVeto ] 0 : Hit 1: [109.829, 81.7928, 9] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [133.909, 98.4754, 10] + [ ecalVeto ] 0 : Hit 1: [133.909, 98.4754, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [40.9348, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [38.5269, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [40.9348, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [38.5269, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4949.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2571 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5754.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2572 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6124.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2573 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, -169.377, 26] + [ ecalVeto ] 0 : Hit 1: [8.69618, -165.206, 25] + [ ecalVeto ] 0 : Hit 2: [11.1041, -161.035, 24] + [ ecalVeto ] 0 : Hit 3: [8.69618, -156.865, 23] + [ ecalVeto ] 0 : Hit 4: [11.1041, -152.694, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [8.69618, -140.182, 21] + [ ecalVeto ] 0 : Hit 1: [11.1041, -136.011, 20] + [ ecalVeto ] 0 : Hit 2: [8.69618, -131.841, 19] + [ ecalVeto ] 0 : Hit 3: [11.1041, -127.67, 18] + [ ecalVeto ] 0 : Hit 4: [8.69618, -123.499, 17] + [ ecalVeto ] 0 : Hit 5: [11.1041, -119.329, 16] + [ ecalVeto ] 0 : Hit 6: [8.69618, -115.158, 15] + [ ecalVeto ] 0 : Hit 7: [11.1041, -110.987, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -62.5599, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -58.3892, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -54.2186, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -50.0479, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -45.8773, 2] + [ ecalVeto ] 0 : Hit 6: [9.63173, -41.7066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2109.35; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2574 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5564.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2575 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -85.9634, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5332.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2576 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 10: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [31.3031, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2389.73; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2577 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7284.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2578 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -106.817, 3] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -110.987, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4723.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2579 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5222.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2580 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 186.059, 27] + [ ecalVeto ] 0 : Hit 1: [-52.039, 181.889, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -98.4754, 26] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -94.3048, 25] + [ ecalVeto ] 0 : Hit 2: [-37.5914, -90.1341, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6139.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2581 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 58.3892, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6620.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2582 Brem photon produced 83 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -161.035, 7] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -165.206, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5503.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2583 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [33.711, -41.7066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5405.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2584 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-145.013, 54.2186, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 125 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5972.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2585 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 62.5599, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, 58.3892, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, 54.2186, 6] + [ ecalVeto ] 0 : Hit 4: [24.0793, 50.0479, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10117.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2586 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [37.5914, -156.865, 27] + [ ecalVeto ] 0 : Hit 1: [39.9993, -152.694, 26] + [ ecalVeto ] 0 : Hit 2: [37.5914, -148.523, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [18.3279, -123.499, 20] + [ ecalVeto ] 0 : Hit 1: [15.92, -119.329, 19] + [ ecalVeto ] 0 : Hit 2: [18.3279, -115.158, 18] + [ ecalVeto ] 0 : Hit 3: [15.92, -110.987, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6536.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2587 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 148.523, 23] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 152.694, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -58.3892, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -54.2186, 10] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -50.0479, 9] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -45.8773, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -70.9012, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -58.3892, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5724.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2588 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, -37.5359, 22] + [ ecalVeto ] 0 : Hit 1: [52.9745, -33.3653, 21] + [ ecalVeto ] 0 : Hit 2: [55.3824, -37.5359, 20] + [ ecalVeto ] 0 : Hit 3: [52.9745, -33.3653, 19] + [ ecalVeto ] 0 : Hit 4: [55.3824, -29.1946, 18] + [ ecalVeto ] 0 : Hit 5: [52.9745, -25.024, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, -16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [40.9348, -12.512, 12] + [ ecalVeto ] 0 : Hit 3: [38.5269, -8.34132, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [52.9745, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [55.3824, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [52.9745, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [55.3824, 37.5359, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5546.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2589 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 37.5359, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5532.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2590 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1831.15; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2591 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, 4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, -2.36672e-14, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -79.2426, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -75.0719, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -70.9012, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6038.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2592 Brem photon produced 85 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5653.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2593 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 10 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2131.37; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2594 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [148.356, 131.841, 32] + [ ecalVeto ] 0 : Hit 1: [145.948, 127.67, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [141.132, 127.67, 30] + [ ecalVeto ] 0 : Hit 1: [138.725, 123.499, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [8.69618, 115.158, 25] + [ ecalVeto ] 0 : Hit 1: [11.1041, 119.329, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [15.92, 110.987, 23] + [ ecalVeto ] 0 : Hit 1: [18.3279, 115.158, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 70.9012, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 66.7306, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 62.5599, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, 58.3892, 12] + [ ecalVeto ] 0 : Hit 5: [16.8555, 54.2186, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4374.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2595 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-66.4865, 115.158, 26] + [ ecalVeto ] 0 : Hit 1: [-68.8945, 110.987, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 106.817, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 102.646, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 69.2808, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [9.63173, -50.0479, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, -54.2186, 2] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5571.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2596 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.34348, 186.059, 17] + [ ecalVeto ] 0 : Hit 1: [3.88031, 181.889, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4911.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2597 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7258.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2598 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4378.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2599 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [-52.039, 81.7928, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 94.3048, 13] + [ ecalVeto ] 0 : Hit 1: [-52.039, 98.4754, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5058.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2600 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4107.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2601 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 33.3653, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, 37.5359, 21] + [ ecalVeto ] 0 : Hit 2: [33.711, 33.3653, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 119.329, 22] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 115.158, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1673.61; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2602 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, -56.7688, 26] + [ ecalVeto ] 0 : Hit 1: [74.6459, -54.2186, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [62.6062, -41.7066, 22] + [ ecalVeto ] 0 : Hit 1: [60.1983, -37.5359, 21] + [ ecalVeto ] 0 : Hit 2: [62.6062, -33.3653, 20] + [ ecalVeto ] 0 : Hit 3: [60.1983, -37.5359, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1608.25; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2603 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5473.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2604 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-109.829, 98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [-112.237, 94.3048, 19] + [ ecalVeto ] 0 : Hit 2: [-109.829, 90.1341, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 73.4515, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -70.9012, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 65.1101, 15] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 60.9395, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 56.7688, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 54.2186, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [-60.1983, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [-62.6062, 16.6826, 11] + [ ecalVeto ] 0 : Hit 4: [-60.1983, 20.8533, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 33.3653, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 50.0479, 4] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-104.078, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-101.67, 45.8773, 4] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6323.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2605 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -62.5599, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4848.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2606 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 75.0719, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 70.9012, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3924.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2607 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, -2.36672e-14, 3] + [ ecalVeto ] 0 : Hit 1: [-130.565, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4775.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2608 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3313.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2609 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3533.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2610 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, -70.9012, 23] + [ ecalVeto ] 0 : Hit 1: [-166.684, -66.7306, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, -58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [-145.013, -54.2186, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, -41.7066, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7194.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2611 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1748.38; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2612 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, 77.6221, 24] + [ ecalVeto ] 0 : Hit 1: [38.5269, 75.0719, 23] + [ ecalVeto ] 0 : Hit 2: [40.9348, 70.9012, 22] + [ ecalVeto ] 0 : Hit 3: [38.5269, 75.0719, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 23] + [ ecalVeto ] 0 : Hit 1: [12.0397, 70.9012, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 66.7306, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, 62.5599, 21] + [ ecalVeto ] 0 : Hit 2: [33.711, 58.3892, 20] + [ ecalVeto ] 0 : Hit 3: [31.3031, 54.2186, 19] + [ ecalVeto ] 0 : Hit 4: [33.711, 50.0479, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [47.2231, 81.7928, 22] + [ ecalVeto ] 0 : Hit 1: [44.8152, 77.6221, 21] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [45.7507, 62.5599, 21] + [ ecalVeto ] 0 : Hit 1: [48.1586, 58.3892, 20] + [ ecalVeto ] 0 : Hit 2: [45.7507, 62.5599, 19] + [ ecalVeto ] 0 : Hit 3: [45.7507, 62.5599, 17] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2942.9; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2613 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, -77.6221, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-95.3817, -73.4515, 20] + [ ecalVeto ] 0 : Hit 1: [-97.7897, -77.6221, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -73.4515, 17] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -69.2808, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -65.1101, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -62.5599, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10423.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2614 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -70.9012, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 54.2186, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 58.3892, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4084.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2615 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [48.1586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [45.7507, 45.8773, 11] + [ ecalVeto ] 0 : Hit 3: [45.7507, 45.8773, 9] + [ ecalVeto ] 0 : Hit 4: [38.5269, 41.7066, 11] + [ ecalVeto ] 0 : Hit 5: [40.9348, 45.8773, 10] + [ ecalVeto ] 0 : Hit 6: [38.5269, 41.7066, 9] + [ ecalVeto ] 0 : Hit 7: [40.9348, 45.8773, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [31.3031, 37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [33.711, 33.3653, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [26.4873, 29.1946, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -8.34132, 2] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -4.17066, 1] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -2.66454e-15, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6081.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2616 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [148.356, -148.523, 30] + [ ecalVeto ] 0 : Hit 1: [145.948, -144.353, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [133.909, -140.182, 28] + [ ecalVeto ] 0 : Hit 1: [131.501, -136.011, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [55.3824, -62.5599, 14] + [ ecalVeto ] 0 : Hit 1: [52.9745, -66.7306, 13] + [ ecalVeto ] 0 : Hit 2: [55.3824, -62.5599, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [40.9348, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, -50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [40.9348, -54.2186, 10] + [ ecalVeto ] 0 : Hit 3: [38.5269, -50.0479, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6695.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2617 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 10: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Hit 7: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Hit 8: [-19.2635, -41.7066, 5] + [ ecalVeto ] 0 : Hit 9: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 20 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2399.35; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2618 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 8: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 9: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 10: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [16.8555, -4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [19.2635, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2785.65; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2619 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4625.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2620 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, -50.0479, 29] + [ ecalVeto ] 0 : Hit 1: [-145.013, -54.2186, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-109.829, -115.158, 28] + [ ecalVeto ] 0 : Hit 1: [-112.237, -110.987, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [47.2231, -140.182, 28] + [ ecalVeto ] 0 : Hit 1: [44.8152, -136.011, 27] + [ ecalVeto ] 0 : Hit 2: [47.2231, -131.841, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-140.197, -62.5599, 27] + [ ecalVeto ] 0 : Hit 1: [-137.789, -66.7306, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-123.341, -66.7306, 26] + [ ecalVeto ] 0 : Hit 1: [-125.749, -70.9012, 25] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-117.053, -102.646, 26] + [ ecalVeto ] 0 : Hit 1: [-119.461, -98.4754, 25] + [ ecalVeto ] 0 : Hit 2: [-119.461, -98.4754, 23] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-132.973, -75.0719, 25] + [ ecalVeto ] 0 : Hit 1: [-131.501, -77.6221, 24] + [ ecalVeto ] 0 : Hit 2: [-131.501, -77.6221, 22] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [44.8152, -119.329, 25] + [ ecalVeto ] 0 : Hit 1: [47.2231, -115.158, 24] + [ ecalVeto ] 0 : Hit 2: [44.8152, -110.987, 23] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-137.789, -75.0719, 20] + [ ecalVeto ] 0 : Hit 1: [-140.197, -79.2426, 19] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1951.3; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2621 Brem photon produced 84 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4992.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2622 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.039, -90.1341, 14] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -85.9634, 13] + [ ecalVeto ] 0 : Hit 2: [-52.039, -81.7928, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [116.118, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [116.118, -20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [118.525, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [116.118, -20.8533, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -81.7928, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -79.2426, 12] + [ ecalVeto ] 0 : Hit 2: [-33.711, -75.0719, 11] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -70.9012, 10] + [ ecalVeto ] 0 : Hit 4: [-31.3031, -70.9012, 12] + [ ecalVeto ] 0 : Hit 5: [-33.711, -66.7306, 11] + [ ecalVeto ] 0 : Hit 6: [-31.3031, -62.5599, 10] + [ ecalVeto ] 0 : Hit 7: [-33.711, -58.3892, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -73.4515, 13] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -77.6221, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -75.0719, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -70.9012, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -75.0719, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -66.7306, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -62.5599, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -62.5599, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6754; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2623 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 33 + [ ecalVeto ] 0 : Beginning track merging using 33 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 27 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 18] + [ ecalVeto ] 0 : Hit 2: [-62.6062, -2.66454e-15, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 3: [-48.1586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 4: [-45.7507, 4.17066, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [38.5269, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [-40.9348, 4.17066, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [33.711, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [33.711, 25.024, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 9] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [40.9348, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [38.5269, -8.34132, 9] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [33.711, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [31.3031, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [24.0793, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [26.4873, 4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [24.0793, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [31.3031, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [33.711, 33.3653, 8] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [45.7507, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [48.1586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [52.9745, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [52.9745, 16.6826, 7] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [52.9745, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [55.3824, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [52.9745, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [52.9745, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [55.3824, 37.5359, 8] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 7] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [38.5269, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [40.9348, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [38.5269, 8.34132, 7] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 5] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Track 21: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 69.2808, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 66.7306, 6] + [ ecalVeto ] 0 : Track 22: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Track 23: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Track 24: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Track 25: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 2] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 1] + [ ecalVeto ] 0 : Track 26: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 27 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6580.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2624 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-89.6303, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-87.2224, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-69.83, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3982.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2625 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-33.711, -50.0479, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [-33.711, -33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-26.4873, -29.1946, 13] + [ ecalVeto ] 0 : Hit 4: [-24.0793, -25.024, 12] + [ ecalVeto ] 0 : Hit 5: [-26.4873, -29.1946, 11] + [ ecalVeto ] 0 : Hit 6: [-24.0793, -33.3653, 10] + [ ecalVeto ] 0 : Hit 7: [-26.4873, -37.5359, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -41.7066, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -37.5359, 10] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -33.3653, 9] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -29.1946, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -41.7066, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6958.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2626 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3197.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2627 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6779.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2628 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6357.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2629 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 13 + [ ecalVeto ] 0 : Beginning track merging using 13 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 29.1946, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [40.9348, 20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [38.5269, 16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [40.9348, 12.512, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [45.7507, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [48.1586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [45.7507, 12.512, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-69.83, 29.1946, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [24.0793, 33.3653, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 29.1946, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 5] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 3] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-33.711, 41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7873.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2630 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, -127.67, 26] + [ ecalVeto ] 0 : Hit 1: [23.1438, -123.499, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [18.3279, -115.158, 24] + [ ecalVeto ] 0 : Hit 1: [15.92, -110.987, 23] + [ ecalVeto ] 0 : Hit 2: [18.3279, -106.817, 22] + [ ecalVeto ] 0 : Hit 3: [15.92, -102.646, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -102.646, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -98.4754, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6705.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2631 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 20.8533, 25] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 25.024, 22] + [ ecalVeto ] 0 : Hit 2: [-96.8541, 29.1946, 21] + [ ecalVeto ] 0 : Hit 3: [-94.4462, 33.3653, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5571.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2632 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4501.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2633 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 3] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 54.2186, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5965.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2634 Brem photon produced 77 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 15 + [ ecalVeto ] 0 : Beginning track merging using 15 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 12] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Hit 8: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 6: [-16.8555, 29.1946, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [33.711, 41.7066, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [26.4873, 45.8773, 6] + [ ecalVeto ] 0 : Hit 5: [24.0793, 41.7066, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [45.7507, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [48.1586, 41.7066, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 5] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4932.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2635 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [33.711, -50.0479, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [26.4873, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 115 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8579.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2636 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4332.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2637 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 8: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 9: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 10: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6147.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2638 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4434.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2639 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 111 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7612.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2640 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [38.5269, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [40.9348, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5596.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2641 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 26] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 24] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 22] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 20] + [ ecalVeto ] 0 : Hit 4: [16.8555, 20.8533, 19] + [ ecalVeto ] 0 : Hit 5: [19.2635, 16.6826, 18] + [ ecalVeto ] 0 : Hit 6: [16.8555, 20.8533, 17] + [ ecalVeto ] 0 : Hit 7: [16.8555, 20.8533, 15] + [ ecalVeto ] 0 : Hit 8: [12.0397, 20.8533, 16] + [ ecalVeto ] 0 : Hit 9: [12.0397, 20.8533, 14] + [ ecalVeto ] 0 : Hit 10: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 11: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 12: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 13: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 14: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 15: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 16: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5735.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2642 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [26.4873, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3751.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2643 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3754.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2644 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 25] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 24] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 23] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 21] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 22] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 20] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 19] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 18] + [ ecalVeto ] 0 : Hit 8: [2.40793, -29.1946, 17] + [ ecalVeto ] 0 : Hit 9: [2.40793, -29.1946, 15] + [ ecalVeto ] 0 : Hit 10: [2.40793, -29.1946, 13] + [ ecalVeto ] 0 : Hit 11: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 21 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2019.19; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2645 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, -136.011, 26] + [ ecalVeto ] 0 : Hit 1: [37.5914, -131.841, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, -110.987, 22] + [ ecalVeto ] 0 : Hit 1: [23.1438, -106.817, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [48.1586, -41.7066, 22] + [ ecalVeto ] 0 : Hit 1: [45.7507, -45.8773, 21] + [ ecalVeto ] 0 : Hit 2: [48.1586, -41.7066, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [38.5269, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [40.9348, -37.5359, 18] + [ ecalVeto ] 0 : Hit 2: [38.5269, -41.7066, 17] + [ ecalVeto ] 0 : Hit 3: [40.9348, -37.5359, 16] + [ ecalVeto ] 0 : Hit 4: [38.5269, -33.3653, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -87.5839, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, -83.4132, 17] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -70.9012, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -66.7306, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -62.5599, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, -58.3892, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, -54.2186, 11] + [ ecalVeto ] 0 : Hit 6: [4.81586, -50.0479, 10] + [ ecalVeto ] 0 : Hit 7: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 8: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 9: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 10: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [33.711, -33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, -29.1946, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, -33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 11] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3368.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2646 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, -45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [45.7507, -45.8773, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -45.8773, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, -41.7066, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, -45.8773, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, -41.7066, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, -45.8773, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, -41.7066, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, -45.8773, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 8: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -25.024, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [33.711, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [33.711, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [31.3031, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [26.4873, -12.512, 6] + [ ecalVeto ] 0 : Hit 5: [24.0793, -16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [26.4873, -12.512, 4] + [ ecalVeto ] 0 : Hit 7: [24.0793, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5416.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2647 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-80.9341, -81.7928, 20] + [ ecalVeto ] 0 : Hit 1: [-83.3421, -77.6221, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -90.1341, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -85.9634, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -56.7688, 17] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -60.9395, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -73.4515, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4313.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2648 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 16.6826, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4909.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2649 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [141.132, 127.67, 30] + [ ecalVeto ] 0 : Hit 1: [138.725, 123.499, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 69.2808, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3975.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2650 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, -110.987, 24] + [ ecalVeto ] 0 : Hit 1: [37.5914, -106.817, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [32.7755, -98.4754, 22] + [ ecalVeto ] 0 : Hit 1: [30.3676, -94.3048, 21] + [ ecalVeto ] 0 : Hit 2: [32.7755, -98.4754, 20] + [ ecalVeto ] 0 : Hit 3: [30.3676, -94.3048, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [25.5517, -85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, -83.4132, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, -79.2426, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, -75.0719, 15] + [ ecalVeto ] 0 : Hit 4: [26.4873, -70.9012, 14] + [ ecalVeto ] 0 : Hit 5: [24.0793, -66.7306, 13] + [ ecalVeto ] 0 : Hit 6: [26.4873, -62.5599, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -62.5599, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -54.2186, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, -58.3892, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, -54.2186, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4435.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2651 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -29.1946, 26] + [ ecalVeto ] 0 : Hit 1: [38.5269, -25.024, 25] + [ ecalVeto ] 0 : Hit 2: [40.9348, -29.1946, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, -16.6826, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5228.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2652 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -115.158, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -110.987, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -90.1341, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -77.6221, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4794.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2653 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5356.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2654 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7033.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2655 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 11 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2275.54; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2656 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3250.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2657 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 16 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3425.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2658 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5030.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2659 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5700.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2660 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-116.118, 45.8773, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-60.1983, -20.8533, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4290.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2661 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-167.62, 156.865, 30] + [ ecalVeto ] 0 : Hit 1: [-167.62, 156.865, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-148.356, 131.841, 23] + [ ecalVeto ] 0 : Hit 1: [-145.948, 127.67, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-141.132, 110.987, 21] + [ ecalVeto ] 0 : Hit 1: [-138.725, 106.817, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-126.685, 94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-124.277, 90.1341, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-112.237, 77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-109.829, 73.4515, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5028.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2662 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [33.711, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [31.3031, -29.1946, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6754.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2663 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5840.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2664 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 8.34132, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6406.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2665 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 19] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 17] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 20] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 18] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 16] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 14] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 8: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 9: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 10: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 11: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 12: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 13: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 14: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 15: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 16: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Hit 17: [4.81586, -8.34132, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Hit 8: [12.0397, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4201.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2666 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -60.9395, 18] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -65.1101, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -58.3892, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -50.0479, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6816.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2667 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [-89.6303, -41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-87.2224, -37.5359, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7031.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2668 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -102.646, 25] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -98.4754, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -79.2426, 18] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -75.0719, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -75.0719, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4693.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2669 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5784.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2670 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -37.5359, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5331.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2671 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5887.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2672 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3690.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2673 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 10 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 253.255; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2674 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3376.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2675 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3095.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2676 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 77.6221, 14] + [ ecalVeto ] 0 : Hit 1: [66.4865, 73.4515, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 4.17066, 1] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -2.66454e-15, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [104.078, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [101.67, -12.512, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 165 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9335.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2677 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 17] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 16] + [ ecalVeto ] 0 : Hit 2: [-76.1183, 56.7688, 15] + [ ecalVeto ] 0 : Hit 3: [-73.7103, 60.9395, 14] + [ ecalVeto ] 0 : Hit 4: [-76.1183, 56.7688, 13] + [ ecalVeto ] 0 : Hit 5: [-74.6459, 54.2186, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3621.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2678 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [33.711, 16.6826, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [16.8555, 29.1946, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, 20.8533, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4976.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2679 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -58.3892, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5473.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2680 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 28] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 27] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 26] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 25] + [ ecalVeto ] 0 : Hit 4: [4.81586, 50.0479, 24] + [ ecalVeto ] 0 : Hit 5: [2.40793, 45.8773, 23] + [ ecalVeto ] 0 : Hit 6: [4.81586, 41.7066, 22] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 21] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 20] + [ ecalVeto ] 0 : Hit 9: [2.40793, 29.1946, 19] + [ ecalVeto ] 0 : Hit 10: [4.81586, 25.024, 18] + [ ecalVeto ] 0 : Hit 11: [2.40793, 20.8533, 17] + [ ecalVeto ] 0 : Hit 12: [4.81586, 16.6826, 16] + [ ecalVeto ] 0 : Hit 13: [2.40793, 12.512, 15] + [ ecalVeto ] 0 : Hit 14: [4.81586, 8.34132, 14] + [ ecalVeto ] 0 : Hit 15: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Hit 16: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 17: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 18: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 19: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 20: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 21: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 22: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 23: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 24: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [197.987, -70.9012, 22] + [ ecalVeto ] 0 : Hit 1: [195.579, -66.7306, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [169.092, -62.5599, 18] + [ ecalVeto ] 0 : Hit 1: [166.684, -58.3892, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4387.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2681 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2375.34; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2682 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [145.013, -4.17066, 27] + [ ecalVeto ] 0 : Hit 1: [145.013, -4.17066, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3770.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2683 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-153.172, -190.23, 14] + [ ecalVeto ] 0 : Hit 1: [-155.58, -186.059, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 10: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-118.525, -58.3892, 5] + [ ecalVeto ] 0 : Hit 1: [-116.118, -62.5599, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7611.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2684 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 70.9012, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 66.7306, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, 62.5599, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4800.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2685 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -12.512, 18] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 6: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5436.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2686 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [38.5269, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [38.5269, -25.024, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [45.7507, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [48.1586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [45.7507, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [48.1586, -25.024, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5970.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2687 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4107.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2688 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [141.132, -169.377, 30] + [ ecalVeto ] 0 : Hit 1: [138.725, -165.206, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [76.1183, -115.158, 18] + [ ecalVeto ] 0 : Hit 1: [73.7103, -110.987, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5377.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2689 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 69.2808, 9] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 65.1101, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8610.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2690 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-52.039, 123.499, 4] + [ ecalVeto ] 0 : Hit 1: [-54.4469, 119.329, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5897.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2691 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 54.2186, 18] + [ ecalVeto ] 0 : Hit 1: [-33.711, 50.0479, 17] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 45.8773, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 60.9395, 3] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 98.4754, 1] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 102.646, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4202.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2692 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -81.7928, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -54.2186, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -50.0479, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7225.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2693 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [59.2627, -227.766, 27] + [ ecalVeto ] 0 : Hit 1: [61.6707, -223.595, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3367.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2694 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6979.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2695 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -77.6221, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -77.6221, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -73.4515, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -65.1101, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -54.2186, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3102.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2696 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3293.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2697 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -50.0479, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8353.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2698 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [-69.83, 54.2186, 9] + [ ecalVeto ] 0 : Hit 2: [-67.4221, 50.0479, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [-24.0793, 25.024, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6092.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2699 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4287.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2700 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 8: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6985.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2701 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6439.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2702 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, 102.646, 22] + [ ecalVeto ] 0 : Hit 1: [37.5914, 98.4754, 21] + [ ecalVeto ] 0 : Hit 2: [39.9993, 94.3048, 20] + [ ecalVeto ] 0 : Hit 3: [37.5914, 90.1341, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 45.8773, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 66.7306, 4] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 66.7306, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2668.15; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2703 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-116.118, -29.1946, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3807.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2704 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4621.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2705 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -75.0719, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -70.9012, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -66.7306, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, -62.5599, 12] + [ ecalVeto ] 0 : Hit 4: [24.0793, -58.3892, 11] + [ ecalVeto ] 0 : Hit 5: [24.0793, -58.3892, 9] + [ ecalVeto ] 0 : Hit 6: [26.4873, -54.2186, 8] + [ ecalVeto ] 0 : Hit 7: [24.0793, -50.0479, 7] + [ ecalVeto ] 0 : Hit 8: [26.4873, -45.8773, 6] + [ ecalVeto ] 0 : Hit 9: [19.2635, -50.0479, 8] + [ ecalVeto ] 0 : Hit 10: [16.8555, -45.8773, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7439.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2706 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 12: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 13: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 14: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Hit 15: [-2.40793, -29.1946, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-176.316, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-173.908, -12.512, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-190.763, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-188.356, -45.8773, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-140.197, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-137.789, -25.024, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5880.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2707 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 73.4515, 11] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 69.2808, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3932.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2708 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 136.011, 21] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 131.841, 20] + [ ecalVeto ] 0 : Hit 2: [-25.5517, 127.67, 19] + [ ecalVeto ] 0 : Hit 3: [-23.1438, 123.499, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1964.48; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2709 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, 90.1341, 25] + [ ecalVeto ] 0 : Hit 1: [-145.948, 85.9634, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, 81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-131.501, 85.9634, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [126.685, 110.987, 22] + [ ecalVeto ] 0 : Hit 1: [124.277, 106.817, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [8.69618, -123.499, 21] + [ ecalVeto ] 0 : Hit 1: [11.1041, -127.67, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [117.053, 102.646, 19] + [ ecalVeto ] 0 : Hit 1: [119.461, 98.4754, 18] + [ ecalVeto ] 0 : Hit 2: [117.053, 94.3048, 17] + [ ecalVeto ] 0 : Hit 3: [119.461, 90.1341, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -70.9012, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -66.7306, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -70.9012, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, -66.7306, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, -62.5599, 11] + [ ecalVeto ] 0 : Hit 6: [4.81586, -58.3892, 10] + [ ecalVeto ] 0 : Hit 7: [2.40793, -54.2186, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 41.7066, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -37.5359, 0] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2875.28; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2710 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -90.1341, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -87.5839, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6848.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2711 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4305.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2712 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [19.2635, -50.0479, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -54.2186, 11] + [ ecalVeto ] 0 : Hit 3: [19.2635, -58.3892, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7336.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2713 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [26.4873, -20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Hit 5: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Hit 6: [19.2635, -25.024, 10] + [ ecalVeto ] 0 : Hit 7: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 8: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4061.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2714 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 9: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, 66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, 62.5599, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, 58.3892, 5] + [ ecalVeto ] 0 : Hit 3: [26.4873, 54.2186, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6109.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2715 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8040.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2716 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-94.4462, 25.024, 24] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 25.024, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 20.8533, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 16.6826, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [40.9348, -20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, -16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [40.9348, -12.512, 10] + [ ecalVeto ] 0 : Hit 3: [38.5269, -16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [40.9348, -12.512, 8] + [ ecalVeto ] 0 : Hit 5: [38.5269, -8.34132, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [52.9745, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [55.3824, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [52.9745, -16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [55.3824, -12.512, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, -8.34132, 7] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8364.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2717 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [124.277, 156.865, 23] + [ ecalVeto ] 0 : Hit 1: [126.685, 152.694, 22] + [ ecalVeto ] 0 : Hit 2: [124.277, 148.523, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [124.277, 90.1341, 21] + [ ecalVeto ] 0 : Hit 1: [124.277, 90.1341, 19] + [ ecalVeto ] 0 : Hit 2: [119.461, 90.1341, 20] + [ ecalVeto ] 0 : Hit 3: [119.461, 90.1341, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2677.8; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2718 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5698.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2719 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, 127.67, 18] + [ ecalVeto ] 0 : Hit 1: [8.69618, 123.499, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6513.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2720 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 90.1341, 11] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 85.9634, 10] + [ ecalVeto ] 0 : Hit 2: [-32.7755, 81.7928, 9] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 79.2426, 8] + [ ecalVeto ] 0 : Hit 4: [-32.7755, 81.7928, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 75.0719, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 79.2426, 9] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 75.0719, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-33.711, 16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 54.2186, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 50.0479, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 118 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6258.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2721 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -90.1341, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -94.3048, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5428.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2722 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 17 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2671.23; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2723 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-3.88031, 98.4754, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 95.9252, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 112 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6414.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2724 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, 98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-117.053, 102.646, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, 94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, 90.1341, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, 90.1341, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, 85.9634, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [33.711, 41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [31.3031, 37.5359, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2471.97; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2725 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, -12.512, 29] + [ ecalVeto ] 0 : Hit 1: [-181.132, -8.34132, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-169.092, -4.17066, 27] + [ ecalVeto ] 0 : Hit 1: [-166.684, -8.34132, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-15.92, 136.011, 24] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 131.841, 23] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 131.841, 22] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 127.67, 21] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 25.024, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 69.2808, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [125.749, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [123.341, 50.0479, 13] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 69.2808, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5126.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2726 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, 123.499, 22] + [ ecalVeto ] 0 : Hit 1: [88.1579, 119.329, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5980.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2727 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, -98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-131.501, -94.3048, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, -81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, -77.6221, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, -73.4515, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, -69.2808, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -65.1101, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 18] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 17] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 16] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 15] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 127.67, 15] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 123.499, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 62.5599, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4245.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2728 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 66.7306, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 58.3892, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 54.2186, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 50.0479, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2947.73; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2729 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, 12.512, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, -4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, -8.34132, 20] + [ ecalVeto ] 0 : Hit 2: [-125.749, -12.512, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 69.2808, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 17] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 58.3892, 15] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 66.7306, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 6: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 8: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 9: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6874.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2730 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 50.0479, 22] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 50.0479, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-74.6459, 54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [-76.1183, 56.7688, 19] + [ ecalVeto ] 0 : Hit 2: [-74.6459, 54.2186, 18] + [ ecalVeto ] 0 : Hit 3: [-69.83, 54.2186, 19] + [ ecalVeto ] 0 : Hit 4: [-67.4221, 58.3892, 18] + [ ecalVeto ] 0 : Hit 5: [-69.83, 54.2186, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 98.4754, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 16] + [ ecalVeto ] 0 : Hit 2: [-68.8945, 69.2808, 15] + [ ecalVeto ] 0 : Hit 3: [-66.4865, 65.1101, 14] + [ ecalVeto ] 0 : Hit 4: [-61.6707, 65.1101, 15] + [ ecalVeto ] 0 : Hit 5: [-60.1983, 62.5599, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-132.973, -2.36672e-14, 13] + [ ecalVeto ] 0 : Hit 1: [-130.565, 4.17066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6085.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2731 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4661.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2732 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -106.817, 19] + [ ecalVeto ] 0 : Hit 1: [-15.92, -110.987, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3645.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2733 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 29.1946, 25] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, 25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, 20.8533, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7054.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2734 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, 12.512, 21] + [ ecalVeto ] 0 : Hit 1: [48.1586, 16.6826, 20] + [ ecalVeto ] 0 : Hit 2: [45.7507, 12.512, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, 16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, 20.8533, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 56.7688, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 54.2186, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3125.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2735 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, -127.67, 32] + [ ecalVeto ] 0 : Hit 1: [66.4865, -123.499, 31] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1798.69; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2736 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-1.47238, -102.646, 22] + [ ecalVeto ] 0 : Hit 1: [-3.88031, -98.4754, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -83.4132, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -79.2426, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -75.0719, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -70.9012, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -58.3892, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5142.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2737 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [67.4221, -8.34132, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -65.1101, 11] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -69.2808, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, -20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-33.711, -41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8112.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2738 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [96.8541, -37.5359, 2] + [ ecalVeto ] 0 : Hit 1: [96.8541, -37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5801.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2739 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, -119.329, 28] + [ ecalVeto ] 0 : Hit 1: [8.69618, -115.158, 27] + [ ecalVeto ] 0 : Hit 2: [11.1041, -119.329, 26] + [ ecalVeto ] 0 : Hit 3: [8.69618, -123.499, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 110.987, 27] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 115.158, 26] + [ ecalVeto ] 0 : Hit 2: [-25.5517, 110.987, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -83.4132, 24] + [ ecalVeto ] 0 : Hit 1: [2.40793, -87.5839, 23] + [ ecalVeto ] 0 : Hit 2: [4.81586, -83.4132, 22] + [ ecalVeto ] 0 : Hit 3: [2.40793, -79.2426, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 110.987, 24] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 106.817, 23] + [ ecalVeto ] 0 : Hit 2: [-32.7755, 106.817, 21] + [ ecalVeto ] 0 : Hit 3: [-30.3676, 102.646, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -75.0719, 21] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -79.2426, 20] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -75.0719, 19] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -70.9012, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 21] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 20] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -70.9012, 19] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -66.7306, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3266.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2740 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 98.4754, 29] + [ ecalVeto ] 0 : Hit 1: [-102.606, 94.3048, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 85.9634, 27] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 81.7928, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 77.6221, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 73.4515, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 23] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 21] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 58.3892, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 29.1946, 13] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5511.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2741 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5046.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2742 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 115.158, 3] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 119.329, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5481.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2743 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -52.5982, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4599.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2744 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 12.512, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6712.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2745 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 131.841, 25] + [ ecalVeto ] 0 : Hit 1: [-102.606, 127.67, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 110.987, 23] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 106.817, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4696.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2746 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, -90.1341, 24] + [ ecalVeto ] 0 : Hit 1: [16.8555, -87.5839, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [69.83, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [67.4221, 16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [62.6062, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [60.1983, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3379.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2747 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -123.499, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -119.329, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [8.69618, -98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [11.1041, -94.3048, 20] + [ ecalVeto ] 0 : Hit 2: [9.63173, -91.7545, 19] + [ ecalVeto ] 0 : Hit 3: [12.0397, -87.5839, 18] + [ ecalVeto ] 0 : Hit 4: [12.0397, -87.5839, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -115.158, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -119.329, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -110.987, 15] + [ ecalVeto ] 0 : Hit 1: [-52.039, -106.817, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -58.3892, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -62.5599, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -58.3892, 4] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 10: [-2.40793, -45.8773, 2] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -45.8773, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4648.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2748 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 144.353, 21] + [ ecalVeto ] 0 : Hit 1: [-138.725, 140.182, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, 131.841, 19] + [ ecalVeto ] 0 : Hit 1: [-117.053, 127.67, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 13] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4833.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2749 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 50.0479, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4472.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2750 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-190.763, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-188.356, -4.17066, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3267.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2751 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4497.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2752 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4529.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2753 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 24] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 62.5599, 22] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [33.711, -50.0479, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5399.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2754 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 83.4132, 25] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 79.2426, 24] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 75.0719, 23] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 70.9012, 22] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 66.7306, 21] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 62.5599, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 54.2186, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 50.0479, 16] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 45.8773, 15] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 41.7066, 14] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 37.5359, 13] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 33.3653, 12] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 9: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 10: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 11: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5355.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2755 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-117.053, 69.2808, 22] + [ ecalVeto ] 0 : Hit 1: [-118.525, 66.7306, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, 144.353, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, 140.182, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-102.606, 60.9395, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -98.4754, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -102.646, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 106.817, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 102.646, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7331.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2756 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, 165.206, 33] + [ ecalVeto ] 0 : Hit 1: [-160.396, 161.035, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-148.356, 148.523, 31] + [ ecalVeto ] 0 : Hit 1: [-145.948, 144.353, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-133.909, 140.182, 29] + [ ecalVeto ] 0 : Hit 1: [-131.501, 136.011, 28] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-119.461, 123.499, 27] + [ ecalVeto ] 0 : Hit 1: [-117.053, 119.329, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 85.9634, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3951.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2757 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 2] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 118 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6443.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2758 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-190.763, 33.3653, 29] + [ ecalVeto ] 0 : Hit 1: [-188.356, 37.5359, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-176.316, 41.7066, 27] + [ ecalVeto ] 0 : Hit 1: [-173.908, 37.5359, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-161.868, 33.3653, 25] + [ ecalVeto ] 0 : Hit 1: [-159.46, 29.1946, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-147.421, 25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-145.013, 29.1946, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-132.973, 25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, 20.8533, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5111.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2759 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [26.4873, 62.5599, 20] + [ ecalVeto ] 0 : Hit 2: [24.0793, 58.3892, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [66.4865, 81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [68.8945, 77.6221, 18] + [ ecalVeto ] 0 : Hit 2: [66.4865, 81.7928, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 37.5359, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6299.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2760 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, -123.499, 26] + [ ecalVeto ] 0 : Hit 1: [73.7103, -119.329, 25] + [ ecalVeto ] 0 : Hit 2: [76.1183, -115.158, 24] + [ ecalVeto ] 0 : Hit 3: [73.7103, -110.987, 23] + [ ecalVeto ] 0 : Hit 4: [76.1183, -106.817, 22] + [ ecalVeto ] 0 : Hit 5: [73.7103, -102.646, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -37.5359, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 3] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5396.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2761 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, -119.329, 23] + [ ecalVeto ] 0 : Hit 1: [-138.725, -115.158, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, -102.646, 21] + [ ecalVeto ] 0 : Hit 1: [-124.277, -98.4754, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, -73.4515, 17] + [ ecalVeto ] 0 : Hit 1: [-102.606, -69.2808, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 58.3892, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [16.8555, 29.1946, 1] + [ ecalVeto ] 0 : Hit 5: [19.2635, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8868.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2762 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 14] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 10: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 11: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 12: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 13: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5472.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2763 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, -194.401, 11] + [ ecalVeto ] 0 : Hit 1: [32.7755, -198.571, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [37.5914, -198.571, 9] + [ ecalVeto ] 0 : Hit 1: [39.9993, -202.742, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [40.9348, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5504.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2764 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7222.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2765 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 123.499, 26] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 119.329, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-15.92, 119.329, 24] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 115.158, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 90.1341, 19] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 87.5839, 18] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 83.4132, 17] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 79.2426, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 7: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 8: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 9: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 10: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 83.4132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 79.2426, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 75.0719, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4764.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2766 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, 29.1946, 25] + [ ecalVeto ] 0 : Hit 1: [-123.341, 25.024, 24] + [ ecalVeto ] 0 : Hit 2: [-123.341, 25.024, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, 33.3653, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-101.67, 20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [-104.078, 16.6826, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4493.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2767 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, -127.67, 22] + [ ecalVeto ] 0 : Hit 1: [8.69618, -123.499, 21] + [ ecalVeto ] 0 : Hit 2: [11.1041, -119.329, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3703.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2768 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [40.9348, 37.5359, 18] + [ ecalVeto ] 0 : Hit 2: [38.5269, 41.7066, 17] + [ ecalVeto ] 0 : Hit 3: [40.9348, 37.5359, 16] + [ ecalVeto ] 0 : Hit 4: [38.5269, 33.3653, 15] + [ ecalVeto ] 0 : Hit 5: [40.9348, 29.1946, 14] + [ ecalVeto ] 0 : Hit 6: [38.5269, 33.3653, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Hit 6: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Hit 7: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4394.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2769 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [119.461, 165.206, 22] + [ ecalVeto ] 0 : Hit 1: [117.053, 161.035, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [45.7507, -62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [48.1586, -58.3892, 18] + [ ecalVeto ] 0 : Hit 2: [45.7507, -54.2186, 17] + [ ecalVeto ] 0 : Hit 3: [48.1586, -50.0479, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, -37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [68.8945, 94.3048, 12] + [ ecalVeto ] 0 : Hit 1: [66.4865, 90.1341, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, -20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [33.711, -16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [31.3031, -12.512, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4403.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2770 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6199.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2771 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, 29.1946, 27] + [ ecalVeto ] 0 : Hit 1: [-137.789, 25.024, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [77.0538, -8.34132, 24] + [ ecalVeto ] 0 : Hit 1: [74.6459, -12.512, 23] + [ ecalVeto ] 0 : Hit 2: [77.0538, -8.34132, 22] + [ ecalVeto ] 0 : Hit 3: [74.6459, -12.512, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, 16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, 12.512, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 8.34132, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 8.34132, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1901.91; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2772 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5692.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2773 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 13 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2625.84; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2774 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5433.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2775 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [23.1438, 98.4754, 27] + [ ecalVeto ] 0 : Hit 1: [25.5517, 94.3048, 26] + [ ecalVeto ] 0 : Hit 2: [23.1438, 90.1341, 25] + [ ecalVeto ] 0 : Hit 3: [25.5517, 94.3048, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 87.5839, 21] + [ ecalVeto ] 0 : Hit 1: [19.2635, 83.4132, 20] + [ ecalVeto ] 0 : Hit 2: [16.8555, 79.2426, 19] + [ ecalVeto ] 0 : Hit 3: [19.2635, 75.0719, 18] + [ ecalVeto ] 0 : Hit 4: [16.8555, 70.9012, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 66.7306, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 62.5599, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, 58.3892, 13] + [ ecalVeto ] 0 : Hit 4: [12.0397, 54.2186, 12] + [ ecalVeto ] 0 : Hit 5: [9.63173, 50.0479, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -65.1101, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -25.024, 14] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -25.024, 12] + [ ecalVeto ] 0 : Hit 3: [-40.9348, -20.8533, 11] + [ ecalVeto ] 0 : Hit 4: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Hit 5: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -12.512, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4310.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2776 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4219.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2777 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Hit 7: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Hit 8: [12.0397, 20.8533, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3797.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2778 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4365.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2779 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7119.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2780 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [24.0793, 25.024, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -25.024, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -45.8773, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-94.4462, 25.024, 4] + [ ecalVeto ] 0 : Hit 1: [-96.8541, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5100; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2781 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3385.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2782 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 8.34132, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, 4.17066, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 85.9634, 23] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 81.7928, 22] + [ ecalVeto ] 0 : Hit 2: [-68.8945, 77.6221, 21] + [ ecalVeto ] 0 : Hit 3: [-66.4865, 73.4515, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, -4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, -8.34132, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, -12.512, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, -16.6826, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [104.078, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [101.67, -29.1946, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 16.6826, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [69.83, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [67.4221, -25.024, 7] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 4] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 112 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6092.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2783 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 14] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -4.17066, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4026.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2784 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [31.3031, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [33.711, -16.6826, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [38.5269, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [40.9348, -20.8533, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [38.5269, 8.34132, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 119 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7425.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2785 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, -85.9634, 26] + [ ecalVeto ] 0 : Hit 1: [52.039, -81.7928, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -62.5599, 22] + [ ecalVeto ] 0 : Hit 1: [38.5269, -58.3892, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [26.4873, -54.2186, 20] + [ ecalVeto ] 0 : Hit 2: [24.0793, -50.0479, 19] + [ ecalVeto ] 0 : Hit 3: [26.4873, -45.8773, 18] + [ ecalVeto ] 0 : Hit 4: [24.0793, -41.7066, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3453.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2786 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Hit 5: [12.0397, 4.17066, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4453.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2787 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3578.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2788 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 37.5359, 22] + [ ecalVeto ] 0 : Hit 2: [-77.0538, 33.3653, 21] + [ ecalVeto ] 0 : Hit 3: [-74.6459, 29.1946, 20] + [ ecalVeto ] 0 : Hit 4: [-77.0538, 33.3653, 19] + [ ecalVeto ] 0 : Hit 5: [-74.6459, 29.1946, 18] + [ ecalVeto ] 0 : Hit 6: [-77.0538, 25.024, 17] + [ ecalVeto ] 0 : Hit 7: [-74.6459, 20.8533, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6143.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2789 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3456.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2790 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -181.889, 33] + [ ecalVeto ] 0 : Hit 1: [-117.053, -177.718, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, -169.377, 31] + [ ecalVeto ] 0 : Hit 1: [-109.829, -165.206, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, -156.865, 29] + [ ecalVeto ] 0 : Hit 1: [-102.606, -152.694, 28] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -127.67, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -123.499, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -115.158, 23] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -110.987, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -106.817, 21] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -102.646, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-52.039, -90.1341, 18] + [ ecalVeto ] 0 : Hit 2: [-54.4469, -85.9634, 17] + [ ecalVeto ] 0 : Hit 3: [-52.039, -81.7928, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -54.2186, 9] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7745.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2791 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 77.6221, 26] + [ ecalVeto ] 0 : Hit 1: [66.4865, 73.4515, 25] + [ ecalVeto ] 0 : Hit 2: [68.8945, 77.6221, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [88.1579, 85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [90.5659, 81.7928, 18] + [ ecalVeto ] 0 : Hit 2: [88.1579, 77.6221, 17] + [ ecalVeto ] 0 : Hit 3: [90.5659, 73.4515, 16] + [ ecalVeto ] 0 : Hit 4: [88.1579, 69.2808, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [40.9348, 37.5359, 2] + [ ecalVeto ] 0 : Hit 1: [40.9348, 37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6104.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2792 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [26.4873, 54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [24.0793, 58.3892, 11] + [ ecalVeto ] 0 : Hit 3: [26.4873, 62.5599, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6513.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2793 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, -81.7928, 22] + [ ecalVeto ] 0 : Hit 1: [59.2627, -77.6221, 21] + [ ecalVeto ] 0 : Hit 2: [61.6707, -81.7928, 20] + [ ecalVeto ] 0 : Hit 3: [59.2627, -77.6221, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [19.2635, -41.7066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5729.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2794 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 119.329, 29] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 115.158, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 90.1341, 25] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 85.9634, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 23] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 58.3892, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 54.2186, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3697.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2795 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2762.5; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2796 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 17] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 16] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 15] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 14] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 12: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 13: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 14: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 15: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2507.91; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2797 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5837.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2798 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [176.316, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [173.908, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5045.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2799 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 50.0479, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5112.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2800 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -37.5359, 27] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -41.7066, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -33.3653, 24] + [ ecalVeto ] 0 : Hit 1: [-69.83, -29.1946, 23] + [ ecalVeto ] 0 : Hit 2: [-67.4221, -25.024, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 4.17066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4809.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2801 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [59.2627, -161.035, 29] + [ ecalVeto ] 0 : Hit 1: [61.6707, -156.865, 28] + [ ecalVeto ] 0 : Hit 2: [59.2627, -152.694, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [47.2231, -106.817, 22] + [ ecalVeto ] 0 : Hit 1: [44.8152, -102.646, 21] + [ ecalVeto ] 0 : Hit 2: [47.2231, -98.4754, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3811.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2802 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, 169.377, 32] + [ ecalVeto ] 0 : Hit 1: [23.1438, 165.206, 31] + [ ecalVeto ] 0 : Hit 2: [25.5517, 161.035, 30] + [ ecalVeto ] 0 : Hit 3: [23.1438, 156.865, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, 144.353, 28] + [ ecalVeto ] 0 : Hit 1: [23.1438, 140.182, 27] + [ ecalVeto ] 0 : Hit 2: [25.5517, 136.011, 26] + [ ecalVeto ] 0 : Hit 3: [23.1438, 131.841, 25] + [ ecalVeto ] 0 : Hit 4: [25.5517, 127.67, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 83.4132, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 79.2426, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 75.0719, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 70.9012, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, 66.7306, 12] + [ ecalVeto ] 0 : Hit 5: [16.8555, 62.5599, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4410.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2803 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 12 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1246.4; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2804 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-181.132, -66.7306, 32] + [ ecalVeto ] 0 : Hit 1: [-183.54, -62.5599, 31] + [ ecalVeto ] 0 : Hit 2: [-181.132, -58.3892, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6113.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2805 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5274.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2806 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1502.36; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2807 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5474.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2808 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, -20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -8.34132, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3986.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2809 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 102.646, 8] + [ ecalVeto ] 0 : Hit 1: [-61.6707, 98.4754, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 58.3892, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6265.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2810 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5775.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2811 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4994.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2812 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, 79.2426, 21] + [ ecalVeto ] 0 : Hit 1: [-181.132, 75.0719, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-202.803, 70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [-205.211, 66.7306, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-161.868, 75.0719, 19] + [ ecalVeto ] 0 : Hit 1: [-159.46, 79.2426, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 81.7928, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 73.4515, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 9] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, 58.3892, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 4] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 62.5599, 5] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 58.3892, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7131.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2813 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 33.3653, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3538.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2814 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 20 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3091.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2815 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8399.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2816 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 206.913, 21] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 202.742, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -77.6221, 5] + [ ecalVeto ] 0 : Hit 1: [-52.039, -73.4515, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5363.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2817 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3677.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2818 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [60.1983, 12.512, 13] + [ ecalVeto ] 0 : Hit 2: [62.6062, 8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [60.1983, 4.17066, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5946.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2819 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -115.158, 27] + [ ecalVeto ] 0 : Hit 1: [-102.606, -119.329, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-88.1579, -119.329, 26] + [ ecalVeto ] 0 : Hit 1: [-90.5659, -115.158, 25] + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2346.93; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2820 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [33.711, 25.024, 20] + [ ecalVeto ] 0 : Hit 2: [31.3031, 29.1946, 19] + [ ecalVeto ] 0 : Hit 3: [33.711, 25.024, 18] + [ ecalVeto ] 0 : Hit 4: [31.3031, 20.8533, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5448.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2821 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-197.987, 4.17066, 29] + [ ecalVeto ] 0 : Hit 1: [-195.579, -2.36672e-14, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, -12.512, 23] + [ ecalVeto ] 0 : Hit 1: [-137.789, -16.6826, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3060.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2822 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 25 + [ ecalVeto ] 0 : Beginning track merging using 25 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 24 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -127.67, 24] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -123.499, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -115.158, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -110.987, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -110.987, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -106.817, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [44.8152, -161.035, 19] + [ ecalVeto ] 0 : Hit 1: [47.2231, -156.865, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -94.3048, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [37.5914, -140.182, 17] + [ ecalVeto ] 0 : Hit 1: [39.9993, -136.011, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -85.9634, 15] + [ ecalVeto ] 0 : Hit 1: [-52.039, -81.7928, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [32.7755, -115.158, 14] + [ ecalVeto ] 0 : Hit 1: [30.3676, -110.987, 13] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 83.4132, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 79.2426, 10] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 6] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-81.8697, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-82.4065, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-81.8697, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 4] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 4] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 0] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 2] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Track 21: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 4.17066, 0] + [ ecalVeto ] 0 : Track 22: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Track 23: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 1] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 24 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3339.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2823 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-102.606, -102.646, 28] + [ ecalVeto ] 0 : Hit 1: [-105.013, -98.4754, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-109.829, -98.4754, 26] + [ ecalVeto ] 0 : Hit 1: [-112.237, -102.646, 25] + [ ecalVeto ] 0 : Hit 2: [-109.829, -106.817, 24] + [ ecalVeto ] 0 : Hit 3: [-112.237, -110.987, 23] + [ ecalVeto ] 0 : Hit 4: [-109.829, -115.158, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1806.59; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2824 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5327.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2825 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 8.34132, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-77.0538, 8.34132, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4196.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2826 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 14] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 14] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 13] + [ ecalVeto ] 0 : Hit 5: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 6: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-69.83, 37.5359, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4612.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2827 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [-104.078, 33.3653, 19] + [ ecalVeto ] 0 : Hit 2: [-101.67, 37.5359, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5605.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2828 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 206.913, 33] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 202.742, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4135.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2829 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5131.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2830 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 9: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5026.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2831 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1186.68; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2832 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4441.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2833 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 41.7066, 24] + [ ecalVeto ] 0 : Hit 1: [45.7507, 37.5359, 23] + [ ecalVeto ] 0 : Hit 2: [45.7507, 37.5359, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4210.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2834 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4249.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2835 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4246.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2836 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3168.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2837 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -85.9634, 25] + [ ecalVeto ] 0 : Hit 1: [-52.039, -81.7928, 24] + [ ecalVeto ] 0 : Hit 2: [-54.4469, -77.6221, 23] + [ ecalVeto ] 0 : Hit 3: [-52.039, -73.4515, 22] + [ ecalVeto ] 0 : Hit 4: [-54.4469, -69.2808, 21] + [ ecalVeto ] 0 : Hit 5: [-52.9745, -66.7306, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -54.2186, 18] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -50.0479, 17] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -45.8773, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [45.7507, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [45.7507, 4.17066, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [38.5269, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [40.9348, -4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [38.5269, -8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [40.9348, -12.512, 10] + [ ecalVeto ] 0 : Hit 4: [38.5269, -8.34132, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [-33.711, -25.024, 11] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -20.8533, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [33.711, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [31.3031, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [33.711, -8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [31.3031, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [24.0793, -8.34132, 9] + [ ecalVeto ] 0 : Hit 6: [26.4873, -4.17066, 8] + [ ecalVeto ] 0 : Hit 7: [24.0793, -8.34132, 7] + [ ecalVeto ] 0 : Hit 8: [26.4873, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4972.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2838 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5244.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2839 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [190.763, -75.0719, 30] + [ ecalVeto ] 0 : Hit 1: [188.356, -70.9012, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -60.9395, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -56.7688, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [38.5269, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [40.9348, 4.17066, 16] + [ ecalVeto ] 0 : Hit 2: [38.5269, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 3: [40.9348, 4.17066, 14] + [ ecalVeto ] 0 : Hit 4: [38.5269, -2.66454e-15, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8554.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2840 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [176.316, -25.024, 32] + [ ecalVeto ] 0 : Hit 1: [173.908, -20.8533, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 73.4515, 11] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 69.2808, 10] + [ ecalVeto ] 0 : Hit 2: [-61.6707, 65.1101, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 62.5599, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2567.02; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2841 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-155.58, -102.646, 23] + [ ecalVeto ] 0 : Hit 1: [-153.172, -98.4754, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-148.356, -98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [-145.948, -94.3048, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -65.1101, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -60.9395, 13] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -56.7688, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -50.0479, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3335.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2842 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 144.353, 27] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 140.182, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 25.024, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 58.3892, 14] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 54.2186, 13] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 50.0479, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 169.377, 13] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 173.547, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 152.694, 13] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 148.523, 12] + [ ecalVeto ] 0 : Hit 2: [-25.5517, 144.353, 11] + [ ecalVeto ] 0 : Hit 3: [-23.1438, 140.182, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [-33.711, 33.3653, 9] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4700; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2843 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2843 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, -70.9012, 23] + [ ecalVeto ] 0 : Hit 1: [48.1586, -66.7306, 22] + [ ecalVeto ] 0 : Hit 2: [45.7507, -62.5599, 21] + [ ecalVeto ] 0 : Hit 3: [45.7507, -62.5599, 19] + [ ecalVeto ] 0 : Hit 4: [40.9348, -62.5599, 20] + [ ecalVeto ] 0 : Hit 5: [40.9348, -62.5599, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [45.7507, -54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [45.7507, -54.2186, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, 50.0479, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-197.987, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-195.579, 50.0479, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [19.2635, -50.0479, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -45.8773, 11] + [ ecalVeto ] 0 : Hit 3: [16.8555, -45.8773, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 5: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 7: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 8: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3577.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2844 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -77.6221, 20] + [ ecalVeto ] 0 : Hit 2: [-61.6707, -81.7928, 19] + [ ecalVeto ] 0 : Hit 3: [-59.2627, -77.6221, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -73.4515, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [54.4469, 69.2808, 8] + [ ecalVeto ] 0 : Hit 1: [54.4469, 69.2808, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5669.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2845 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -79.2426, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -75.0719, 17] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -70.9012, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 4.17066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5537.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2846 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 22] + [ ecalVeto ] 0 : Hit 2: [38.5269, -16.6826, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, -12.512, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, -8.34132, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, -4.17066, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, -4.17066, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 4: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 5: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 6: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 7: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 69.2808, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 66.7306, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 50.0479, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 81.7928, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 62.5599, 11] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 66.7306, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 70.9012, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 50.0479, 10] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8188.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2847 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, -102.646, 17] + [ ecalVeto ] 0 : Hit 1: [32.7755, -106.817, 16] + [ ecalVeto ] 0 : Hit 2: [30.3676, -102.646, 15] + [ ecalVeto ] 0 : Hit 3: [32.7755, -98.4754, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4803.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2848 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 32] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 31] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 30] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 29] + [ ecalVeto ] 0 : Hit 4: [19.2635, -25.024, 28] + [ ecalVeto ] 0 : Hit 5: [16.8555, -20.8533, 27] + [ ecalVeto ] 0 : Hit 6: [19.2635, -25.024, 26] + [ ecalVeto ] 0 : Hit 7: [16.8555, -20.8533, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 9: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 10: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Hit 11: [-12.0397, -4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2475.4; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2849 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4926.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2850 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 20 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3225.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2851 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, 140.182, 29] + [ ecalVeto ] 0 : Hit 1: [11.1041, 136.011, 28] + [ ecalVeto ] 0 : Hit 2: [8.69618, 131.841, 27] + [ ecalVeto ] 0 : Hit 3: [11.1041, 127.67, 26] + [ ecalVeto ] 0 : Hit 4: [8.69618, 123.499, 25] + [ ecalVeto ] 0 : Hit 5: [11.1041, 119.329, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 26] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 25] + [ ecalVeto ] 0 : Hit 2: [4.81586, 75.0719, 24] + [ ecalVeto ] 0 : Hit 3: [2.40793, 79.2426, 23] + [ ecalVeto ] 0 : Hit 4: [4.81586, 83.4132, 22] + [ ecalVeto ] 0 : Hit 5: [2.40793, 87.5839, 21] + [ ecalVeto ] 0 : Hit 6: [4.81586, 91.7545, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [8.69618, 106.817, 23] + [ ecalVeto ] 0 : Hit 1: [11.1041, 102.646, 22] + [ ecalVeto ] 0 : Hit 2: [8.69618, 106.817, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1193.94; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2852 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [80.9341, -98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [83.3421, -102.646, 20] + [ ecalVeto ] 0 : Hit 2: [80.9341, -98.4754, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [19.2635, -58.3892, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [39.9993, -85.9634, 12] + [ ecalVeto ] 0 : Hit 1: [39.9993, -85.9634, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -54.2186, 8] + [ ecalVeto ] 0 : Hit 3: [19.2635, -50.0479, 10] + [ ecalVeto ] 0 : Hit 4: [16.8555, -45.8773, 9] + [ ecalVeto ] 0 : Hit 5: [19.2635, -41.7066, 8] + [ ecalVeto ] 0 : Hit 6: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5664.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2853 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6447.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2854 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 28] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 27] + [ ecalVeto ] 0 : Hit 2: [26.4873, -12.512, 26] + [ ecalVeto ] 0 : Hit 3: [24.0793, -8.34132, 25] + [ ecalVeto ] 0 : Hit 4: [26.4873, -4.17066, 24] + [ ecalVeto ] 0 : Hit 5: [24.0793, -2.66454e-15, 23] + [ ecalVeto ] 0 : Hit 6: [26.4873, -4.17066, 22] + [ ecalVeto ] 0 : Hit 7: [24.0793, -2.66454e-15, 21] + [ ecalVeto ] 0 : Hit 8: [26.4873, 4.17066, 20] + [ ecalVeto ] 0 : Hit 9: [24.0793, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 10: [26.4873, 4.17066, 18] + [ ecalVeto ] 0 : Hit 11: [24.0793, -2.66454e-15, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Hit 5: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Hit 6: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 8: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5228.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2855 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 24] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 23] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 22] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 20] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 19] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 17] + [ ecalVeto ] 0 : Hit 4: [16.8555, 12.512, 15] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 16] + [ ecalVeto ] 0 : Hit 6: [12.0397, 12.512, 14] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 13] + [ ecalVeto ] 0 : Hit 8: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 9: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3919.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2856 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [133.909, 140.182, 30] + [ ecalVeto ] 0 : Hit 1: [131.501, 136.011, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [119.461, 140.182, 28] + [ ecalVeto ] 0 : Hit 1: [117.053, 136.011, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [105.013, 131.841, 26] + [ ecalVeto ] 0 : Hit 1: [102.606, 127.67, 25] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-1.47238, 194.401, 24] + [ ecalVeto ] 0 : Hit 1: [-3.88031, 190.23, 23] + [ ecalVeto ] 0 : Hit 2: [-1.47238, 186.059, 22] + [ ecalVeto ] 0 : Hit 3: [-3.88031, 181.889, 21] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [23.1438, -148.523, 23] + [ ecalVeto ] 0 : Hit 1: [23.1438, -148.523, 21] + [ ecalVeto ] 0 : Hit 2: [25.5517, -152.694, 20] + [ ecalVeto ] 0 : Hit 3: [23.1438, -156.865, 19] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-1.47238, 136.011, 14] + [ ecalVeto ] 0 : Hit 1: [-3.88031, 131.841, 13] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-1.47238, 119.329, 12] + [ ecalVeto ] 0 : Hit 1: [-3.88031, 115.158, 11] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 2] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4174.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2857 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3715.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2858 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6275.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2859 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -50.0479, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 6: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Hit 7: [-19.2635, -16.6826, 5] + [ ecalVeto ] 0 : Hit 8: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4198.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2860 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4040.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2861 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5243.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2862 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6794.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2863 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -41.7066, 22] + [ ecalVeto ] 0 : Hit 1: [45.7507, -37.5359, 21] + [ ecalVeto ] 0 : Hit 2: [48.1586, -33.3653, 20] + [ ecalVeto ] 0 : Hit 3: [45.7507, -29.1946, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [38.5269, -25.024, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, -12.512, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 62.5599, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 58.3892, 7] + [ ecalVeto ] 0 : Hit 4: [26.4873, 54.2186, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 7: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3397.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2864 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, 115.158, 22] + [ ecalVeto ] 0 : Hit 1: [30.3676, 110.987, 21] + [ ecalVeto ] 0 : Hit 2: [32.7755, 106.817, 20] + [ ecalVeto ] 0 : Hit 3: [30.3676, 102.646, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1797.79; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2865 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 75.0719, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, 70.9012, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, 66.7306, 5] + [ ecalVeto ] 0 : Hit 3: [26.4873, 62.5599, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3036.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2866 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, -90.1341, 16] + [ ecalVeto ] 0 : Hit 1: [102.606, -85.9634, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 8: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 54.2186, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 2] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 41.7066, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 3] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 73.4515, 1] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 77.6221, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5828.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2867 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4818.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2868 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -95.9252, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, -91.7545, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, -87.5839, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, -91.7545, 14] + [ ecalVeto ] 0 : Hit 4: [2.40793, -87.5839, 13] + [ ecalVeto ] 0 : Hit 5: [4.81586, -83.4132, 12] + [ ecalVeto ] 0 : Hit 6: [2.40793, -79.2426, 11] + [ ecalVeto ] 0 : Hit 7: [4.81586, -83.4132, 10] + [ ecalVeto ] 0 : Hit 8: [2.40793, -79.2426, 9] + [ ecalVeto ] 0 : Hit 9: [4.81586, -75.0719, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [108.894, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [108.894, -41.7066, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [52.9745, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [52.9745, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3197.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2869 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 27] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 26] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 25] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 23] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 22] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -45.8773, 26] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 24] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -41.7066, 23] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -37.5359, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 25] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 24] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 23] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 22] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -37.5359, 21] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -33.3653, 20] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -29.1946, 19] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -25.024, 18] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -29.1946, 17] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -25.024, 16] + [ ecalVeto ] 0 : Hit 10: [-12.0397, -20.8533, 15] + [ ecalVeto ] 0 : Hit 11: [-9.63173, -25.024, 14] + [ ecalVeto ] 0 : Hit 12: [-12.0397, -20.8533, 13] + [ ecalVeto ] 0 : Hit 13: [-9.63173, -16.6826, 12] + [ ecalVeto ] 0 : Hit 14: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Hit 15: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 16: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 17: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 18: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 19: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 20: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 21: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 22: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 148.523, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 144.353, 22] + [ ecalVeto ] 0 : Hit 2: [-90.5659, 140.182, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1272.4; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2870 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 98.4754, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 94.3048, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 77.6221, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 69.2808, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-112.237, -77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [-109.829, -73.4515, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 58.3892, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5042.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2871 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-123.341, -8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [-125.749, -12.512, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3241.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2872 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 75.0719, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 70.9012, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 58.3892, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3012.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2873 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -60.9395, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -65.1101, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3446.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2874 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, 81.7928, 24] + [ ecalVeto ] 0 : Hit 1: [59.2627, 77.6221, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5479.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2875 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 70.9012, 26] + [ ecalVeto ] 0 : Hit 1: [9.63173, 66.7306, 25] + [ ecalVeto ] 0 : Hit 2: [12.0397, 62.5599, 24] + [ ecalVeto ] 0 : Hit 3: [9.63173, 58.3892, 23] + [ ecalVeto ] 0 : Hit 4: [12.0397, 62.5599, 22] + [ ecalVeto ] 0 : Hit 5: [9.63173, 58.3892, 21] + [ ecalVeto ] 0 : Hit 6: [12.0397, 54.2186, 20] + [ ecalVeto ] 0 : Hit 7: [9.63173, 50.0479, 19] + [ ecalVeto ] 0 : Hit 8: [9.63173, 50.0479, 17] + [ ecalVeto ] 0 : Hit 9: [4.81586, 50.0479, 18] + [ ecalVeto ] 0 : Hit 10: [4.81586, 50.0479, 16] + [ ecalVeto ] 0 : Hit 11: [2.40793, 45.8773, 15] + [ ecalVeto ] 0 : Hit 12: [4.81586, 41.7066, 14] + [ ecalVeto ] 0 : Hit 13: [2.40793, 37.5359, 13] + [ ecalVeto ] 0 : Hit 14: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 15: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 16: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 17: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 18: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 19: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 20: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 21: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 22: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 23: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 22] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 21] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 20] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -29.1946, 19] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 18] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -29.1946, 17] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -25.024, 16] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -20.8533, 15] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -16.6826, 14] + [ ecalVeto ] 0 : Hit 10: [-9.63173, -16.6826, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1537.66; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2876 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4803.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2877 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, -102.646, 15] + [ ecalVeto ] 0 : Hit 1: [-109.829, -98.4754, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Hit 7: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -69.2808, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -66.7306, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6816.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2878 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, 123.499, 18] + [ ecalVeto ] 0 : Hit 1: [30.3676, 119.329, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7999.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2879 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 29.1946, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3087.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2880 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6104.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2881 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5172.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2882 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.34348, -152.694, 23] + [ ecalVeto ] 0 : Hit 1: [3.88031, -148.523, 22] + [ ecalVeto ] 0 : Hit 2: [3.34348, -144.353, 21] + [ ecalVeto ] 0 : Hit 3: [3.88031, -140.182, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3270.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2883 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [119.461, -81.7928, 26] + [ ecalVeto ] 0 : Hit 1: [117.053, -77.6221, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [97.7897, -77.6221, 22] + [ ecalVeto ] 0 : Hit 1: [95.3817, -81.7928, 21] + [ ecalVeto ] 0 : Hit 2: [97.7897, -77.6221, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [76.1183, -65.1101, 18] + [ ecalVeto ] 0 : Hit 1: [76.1183, -65.1101, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [67.4221, -58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [67.4221, -58.3892, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2589.15; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2884 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 33.3653, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, 37.5359, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, 33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, 29.1946, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 33.3653, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 25.024, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-52.039, -98.4754, 12] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -94.3048, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 119 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6063.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2885 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [45.7507, 54.2186, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5144.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2886 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-69.83, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [-67.4221, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [-69.83, -29.1946, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 3] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5525.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2887 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, 127.67, 24] + [ ecalVeto ] 0 : Hit 1: [37.5914, 123.499, 23] + [ ecalVeto ] 0 : Hit 2: [39.9993, 119.329, 22] + [ ecalVeto ] 0 : Hit 3: [37.5914, 115.158, 21] + [ ecalVeto ] 0 : Hit 4: [39.9993, 110.987, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [30.3676, 102.646, 19] + [ ecalVeto ] 0 : Hit 1: [32.7755, 98.4754, 18] + [ ecalVeto ] 0 : Hit 2: [30.3676, 94.3048, 17] + [ ecalVeto ] 0 : Hit 3: [32.7755, 90.1341, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5569.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2888 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -106.817, 17] + [ ecalVeto ] 0 : Hit 1: [-102.606, -110.987, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, -45.8773, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6238.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2889 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4127.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2890 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3855.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2891 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [162.804, 106.817, 4] + [ ecalVeto ] 0 : Hit 1: [160.396, 102.646, 3] + [ ecalVeto ] 0 : Hit 2: [162.804, 98.4754, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6623.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2892 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 50.0479, 6] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 50.0479, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3623.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2893 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2236.28; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2894 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3650.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2895 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 24] + [ ecalVeto ] 0 : Hit 1: [31.3031, -20.8533, 23] + [ ecalVeto ] 0 : Hit 2: [33.711, -16.6826, 22] + [ ecalVeto ] 0 : Hit 3: [31.3031, -20.8533, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, -98.4754, 13] + [ ecalVeto ] 0 : Hit 1: [-102.606, -94.3048, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [80.9341, 115.158, 11] + [ ecalVeto ] 0 : Hit 1: [83.3421, 110.987, 10] + [ ecalVeto ] 0 : Hit 2: [80.9341, 106.817, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [59.2627, 77.6221, 9] + [ ecalVeto ] 0 : Hit 1: [61.6707, 81.7928, 8] + [ ecalVeto ] 0 : Hit 2: [59.2627, 77.6221, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3088.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2896 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [59.2627, 177.718, 23] + [ ecalVeto ] 0 : Hit 1: [61.6707, 173.547, 22] + [ ecalVeto ] 0 : Hit 2: [59.2627, 169.377, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -50.0479, 22] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -45.8773, 21] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -41.7066, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 15] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -12.512, 12] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -8.34132, 11] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -4.17066, 10] + [ ecalVeto ] 0 : Hit 6: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 7: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5553.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2897 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6089.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2898 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6568.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2899 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -50.0479, 18] + [ ecalVeto ] 0 : Hit 1: [-69.83, -45.8773, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [31.3031, -12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6130.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2900 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2645.5; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2901 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -58.3892, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7368.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2902 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 19 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1620.42; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2903 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -115.158, 20] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -110.987, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-15.92, -102.646, 18] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -98.4754, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4152; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2904 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, 194.401, 30] + [ ecalVeto ] 0 : Hit 1: [23.1438, 190.23, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Hit 4: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 5: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Hit 6: [26.4873, 29.1946, 8] + [ ecalVeto ] 0 : Hit 7: [24.0793, 33.3653, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [26.4873, 54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [24.0793, 50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [26.4873, 45.8773, 10] + [ ecalVeto ] 0 : Hit 4: [24.0793, 41.7066, 9] + [ ecalVeto ] 0 : Hit 5: [26.4873, 37.5359, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2795.39; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2905 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4936.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2906 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 24 + [ ecalVeto ] 0 : Beginning track merging using 24 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 21 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 8.34132, 29] + [ ecalVeto ] 0 : Hit 1: [-116.118, 4.17066, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [123.341, -8.34132, 29] + [ ecalVeto ] 0 : Hit 1: [125.749, -4.17066, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [118.525, -8.34132, 28] + [ ecalVeto ] 0 : Hit 1: [116.118, -12.512, 27] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 27] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -4.17066, 25] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -2.36672e-14, 24] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-81.8697, -8.34132, 22] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -8.34132, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -8.34132, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [45.7507, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [48.1586, -25.024, 12] + [ ecalVeto ] 0 : Hit 2: [45.7507, -29.1946, 11] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 12] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 8] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 6: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 21 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3858.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2907 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4895.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2908 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2653.3; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2909 Brem photon produced 78 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4367.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2910 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -8.34132, 9] + [ ecalVeto ] 0 : Hit 4: [24.0793, -8.34132, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4841.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2911 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [15.92, 102.646, 1] + [ ecalVeto ] 0 : Hit 1: [18.3279, 106.817, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4633.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2912 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4737.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2913 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, 54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-181.132, 58.3892, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-159.46, 54.2186, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3538.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2914 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 13 + [ ecalVeto ] 0 : Beginning track merging using 13 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, -62.5599, 31] + [ ecalVeto ] 0 : Hit 1: [-137.789, -58.3892, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, -54.2186, 29] + [ ecalVeto ] 0 : Hit 1: [-123.341, -50.0479, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -50.0479, 27] + [ ecalVeto ] 0 : Hit 1: [-116.118, -45.8773, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, -45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-108.894, -41.7066, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-104.078, -33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, -29.1946, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [59.2627, 77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [59.2627, 77.6221, 9] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 10] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [59.2627, 85.9634, 9] + [ ecalVeto ] 0 : Hit 1: [59.2627, 85.9634, 7] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 8] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5892.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2915 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5684.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2916 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -50.0479, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -45.8773, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5525.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2917 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1947.87; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2918 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4087.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2919 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 70.9012, 18] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 66.7306, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 66.7306, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 58.3892, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5099.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2920 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4941.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2921 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -94.3048, 21] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -90.1341, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -69.2808, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -58.3892, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 70.9012, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 66.7306, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [24.0793, 66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, 62.5599, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, 58.3892, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, 54.2186, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4843.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2922 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8059.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2923 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 115.158, 21] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 119.329, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 70.9012, 7] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 70.9012, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 45.8773, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-60.1983, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4803.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2924 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2924 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 29.1946, 20] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 25.024, 19] + [ ecalVeto ] 0 : Hit 2: [-60.1983, 20.8533, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3242.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2925 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [45.7507, 12.512, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [40.9348, 12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6565.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2926 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3509.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2927 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2927 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3709.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2928 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [197.987, -12.512, 30] + [ ecalVeto ] 0 : Hit 1: [195.579, -8.34132, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [132.973, -41.7066, 30] + [ ecalVeto ] 0 : Hit 1: [130.565, -37.5359, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 85.9634, 23] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 81.7928, 22] + [ ecalVeto ] 0 : Hit 2: [-68.8945, 77.6221, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 13412.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2929 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2197.31; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2930 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -83.4132, 21] + [ ecalVeto ] 0 : Hit 1: [-173.908, -87.5839, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, -70.9012, 15] + [ ecalVeto ] 0 : Hit 1: [-123.341, -66.7306, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5412.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2931 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4834.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2932 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [95.3817, -123.499, 21] + [ ecalVeto ] 0 : Hit 1: [95.3817, -123.499, 19] + [ ecalVeto ] 0 : Hit 2: [97.7897, -119.329, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5777.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2933 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [19.2635, -16.6826, 2] + [ ecalVeto ] 0 : Hit 5: [16.8555, -12.512, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7876.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2934 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [219.659, 25.024, 24] + [ ecalVeto ] 0 : Hit 1: [217.251, 20.8533, 23] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3861.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2935 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 32] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 31] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 30] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 29] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 28] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 27] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 25] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 24] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 23] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 22] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 21] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 18] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 17] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 16] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 14] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2473.63; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2936 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3439.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2937 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, 106.817, 30] + [ ecalVeto ] 0 : Hit 1: [59.2627, 102.646, 29] + [ ecalVeto ] 0 : Hit 2: [61.6707, 98.4754, 28] + [ ecalVeto ] 0 : Hit 3: [59.2627, 94.3048, 27] + [ ecalVeto ] 0 : Hit 4: [61.6707, 90.1341, 26] + [ ecalVeto ] 0 : Hit 5: [59.2627, 85.9634, 25] + [ ecalVeto ] 0 : Hit 6: [61.6707, 81.7928, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-15.92, -102.646, 22] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -98.4754, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 16.6826, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, 58.3892, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [48.1586, 58.3892, 20] + [ ecalVeto ] 0 : Hit 1: [45.7507, 54.2186, 19] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-104.078, 58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-102.606, 60.9395, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [33.711, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 37.5359, 15] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3464.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2938 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-81.8697, -25.024, 24] + [ ecalVeto ] 0 : Hit 1: [-82.4065, -29.1946, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 45.8773, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2788.56; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2939 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, 161.035, 32] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 156.865, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 102.646, 23] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 98.4754, 22] + [ ecalVeto ] 0 : Hit 2: [-11.1041, 94.3048, 21] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 91.7545, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 79.2426, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 75.0719, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 70.9012, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 66.7306, 16] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 62.5599, 15] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 58.3892, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [30.3676, -102.646, 13] + [ ecalVeto ] 0 : Hit 1: [32.7755, -106.817, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5630.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2940 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3664.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2941 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6924.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2942 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [112.237, 136.011, 16] + [ ecalVeto ] 0 : Hit 1: [112.237, 136.011, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [97.7897, 127.67, 14] + [ ecalVeto ] 0 : Hit 1: [95.3817, 123.499, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4079.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2943 Brem photon produced 77 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-202.803, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-205.211, 41.7066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5003.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2944 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [48.1586, 66.7306, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6895.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2945 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, -152.694, 24] + [ ecalVeto ] 0 : Hit 1: [8.69618, -148.523, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -83.4132, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -79.2426, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -75.0719, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -70.9012, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5554.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2946 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [31.3031, 20.8533, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -87.5839, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -83.4132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -79.2426, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -79.2426, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -75.0719, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11167.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2947 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 1: [-69.83, 4.17066, 19] + [ ecalVeto ] 0 : Hit 2: [-67.4221, -2.66454e-15, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5215.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2948 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, 50.0479, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, 45.8773, 11] + [ ecalVeto ] 0 : Hit 3: [16.8555, 45.8773, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4811.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2949 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -127.67, 22] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -123.499, 21] + [ ecalVeto ] 0 : Hit 2: [-44.8152, -119.329, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4197.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2950 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 12] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 37.5359, 11] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-116.118, -12.512, 14] + [ ecalVeto ] 0 : Hit 1: [-118.525, -16.6826, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4070.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2951 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, -25.024, 29] + [ ecalVeto ] 0 : Hit 1: [-130.565, -20.8533, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 27] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 22] + [ ecalVeto ] 0 : Hit 2: [-94.4462, -16.6826, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-94.4462, 33.3653, 22] + [ ecalVeto ] 0 : Hit 1: [-96.8541, 29.1946, 21] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -37.5359, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4799.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2952 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [161.868, 75.0719, 28] + [ ecalVeto ] 0 : Hit 1: [161.868, 75.0719, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [154.644, 62.5599, 24] + [ ecalVeto ] 0 : Hit 1: [154.644, 62.5599, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1843.48; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2953 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, 37.5359, 25] + [ ecalVeto ] 0 : Hit 1: [-181.132, 33.3653, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, 50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-116.118, 45.8773, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, 45.8773, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [31.3031, 54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 3] + [ ecalVeto ] 0 : Hit 2: [33.711, 50.0479, 2] + [ ecalVeto ] 0 : Hit 3: [31.3031, 45.8773, 1] + [ ecalVeto ] 0 : Hit 4: [33.711, 41.7066, 0] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4572.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2954 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [169.092, -29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [166.684, -33.3653, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4479.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2955 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [141.132, 144.353, 16] + [ ecalVeto ] 0 : Hit 1: [138.725, 140.182, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 81.7928, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5825.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2956 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-166.684, 16.6826, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4714.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2957 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [67.4221, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [67.4221, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [55.3824, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [52.9745, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [52.9745, -8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5392.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2958 Brem photon produced 81 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -58.3892, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -29.1946, 1] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -25.024, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6738.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2959 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 4] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -20.8533, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-145.948, -144.353, 4] + [ ecalVeto ] 0 : Hit 1: [-148.356, -148.523, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4866.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2960 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-130.565, -29.1946, 2] + [ ecalVeto ] 0 : Hit 1: [-130.565, -29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5113.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2961 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 41.7066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3812.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2962 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4730.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2963 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4436.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2964 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4817.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2965 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 6: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Hit 7: [12.0397, -20.8533, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3750.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2966 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [67.4221, 41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4420.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2967 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.88031, -106.817, 18] + [ ecalVeto ] 0 : Hit 1: [3.34348, -102.646, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-1.47238, -102.646, 16] + [ ecalVeto ] 0 : Hit 1: [-3.88031, -98.4754, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -79.2426, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -75.0719, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -70.9012, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -66.7306, 8] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -66.7306, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4736.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2968 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [131.501, 85.9634, 29] + [ ecalVeto ] 0 : Hit 1: [133.909, 81.7928, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [105.013, 65.1101, 24] + [ ecalVeto ] 0 : Hit 1: [102.606, 60.9395, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [77.0538, 50.0479, 18] + [ ecalVeto ] 0 : Hit 1: [74.6459, 45.8773, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [132.973, -41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [130.565, -37.5359, 13] + [ ecalVeto ] 0 : Hit 2: [132.973, -33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [130.565, -37.5359, 11] + [ ecalVeto ] 0 : Hit 4: [132.973, -41.7066, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4926.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2969 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [33.711, 50.0479, 22] + [ ecalVeto ] 0 : Hit 2: [31.3031, 45.8773, 21] + [ ecalVeto ] 0 : Hit 3: [33.711, 50.0479, 20] + [ ecalVeto ] 0 : Hit 4: [33.711, 50.0479, 18] + [ ecalVeto ] 0 : Hit 5: [38.5269, 50.0479, 19] + [ ecalVeto ] 0 : Hit 6: [38.5269, 50.0479, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 45.8773, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, 41.7066, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 2] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 1] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -50.0479, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9541.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2970 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, 79.2426, 23] + [ ecalVeto ] 0 : Hit 1: [-137.789, 75.0719, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 41.7066, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 33.3653, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3338.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2971 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 79.2426, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 75.0719, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 8.34132, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [74.6459, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [74.6459, -29.1946, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5423.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2972 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2972 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 20] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -37.5359, 19] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -41.7066, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 14] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2289.09; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2973 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -66.7306, 4] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -62.5599, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3685.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2974 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, -115.158, 30] + [ ecalVeto ] 0 : Hit 1: [44.8152, -110.987, 29] + [ ecalVeto ] 0 : Hit 2: [47.2231, -106.817, 28] + [ ecalVeto ] 0 : Hit 3: [44.8152, -102.646, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [39.9993, -94.3048, 26] + [ ecalVeto ] 0 : Hit 1: [37.5914, -90.1341, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -79.2426, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, -75.0719, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -66.7306, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, -62.5599, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, -58.3892, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, -54.2186, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2857.04; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2975 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, -136.011, 18] + [ ecalVeto ] 0 : Hit 1: [23.1438, -131.841, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1377.71; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2976 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, 81.7928, 24] + [ ecalVeto ] 0 : Hit 1: [73.7103, 77.6221, 23] + [ ecalVeto ] 0 : Hit 2: [76.1183, 81.7928, 22] + [ ecalVeto ] 0 : Hit 3: [73.7103, 77.6221, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [66.4865, 73.4515, 21] + [ ecalVeto ] 0 : Hit 1: [68.8945, 77.6221, 20] + [ ecalVeto ] 0 : Hit 2: [66.4865, 73.4515, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [54.4469, 69.2808, 16] + [ ecalVeto ] 0 : Hit 1: [54.4469, 69.2808, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [45.7507, 70.9012, 13] + [ ecalVeto ] 0 : Hit 1: [45.7507, 70.9012, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [40.9348, -20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, -16.6826, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, -12.512, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, 87.5839, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 91.7545, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5741.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2977 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7116.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2978 Brem photon produced 96 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 33.3653, 22] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 29.1946, 21] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 33.3653, 20] + [ ecalVeto ] 0 : Hit 3: [-40.9348, 29.1946, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3536.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2979 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 22 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2713.14; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2980 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 70.9012, 21] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 66.7306, 20] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 62.5599, 19] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 58.3892, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7804.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2981 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4387.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2982 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 115.158, 24] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 110.987, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [59.2627, 110.987, 17] + [ ecalVeto ] 0 : Hit 1: [61.6707, 115.158, 16] + [ ecalVeto ] 0 : Hit 2: [59.2627, 110.987, 15] + [ ecalVeto ] 0 : Hit 3: [61.6707, 106.817, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6909.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2983 Brem photon produced 5 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4693.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2984 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-94.4462, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-96.8541, -12.512, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6016.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2985 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 60.9395, 27] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 65.1101, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 65.1101, 25] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 60.9395, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 60.9395, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [-69.83, 45.8773, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 165.206, 19] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 161.035, 18] + [ ecalVeto ] 0 : Hit 2: [-32.7755, 165.206, 17] + [ ecalVeto ] 0 : Hit 3: [-30.3676, 169.377, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5377.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2986 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-123.341, -16.6826, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-101.67, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-101.67, -20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [-55.3824, -29.1946, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -29.1946, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-111.302, -54.2186, 1] + [ ecalVeto ] 0 : Hit 1: [-108.894, -58.3892, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6102.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2987 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -106.817, 23] + [ ecalVeto ] 0 : Hit 1: [-15.92, -110.987, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2758.99; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2988 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 4: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4936.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2989 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 79.2426, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 75.0719, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 70.9012, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 66.7306, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3252.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2990 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, 4.17066, 20] + [ ecalVeto ] 0 : Hit 1: [55.3824, 4.17066, 18] + [ ecalVeto ] 0 : Hit 2: [52.9745, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 3: [55.3824, 4.17066, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4076.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2991 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-73.7103, 69.2808, 14] + [ ecalVeto ] 0 : Hit 1: [-76.1183, 73.4515, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6220.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2992 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, 156.865, 27] + [ ecalVeto ] 0 : Hit 1: [-145.948, 152.694, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, 127.67, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, 123.499, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-112.237, 119.329, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, 115.158, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 94.3048, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 85.9634, 15] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 65.1101, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 62.5599, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4213.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2993 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, 110.987, 16] + [ ecalVeto ] 0 : Hit 1: [52.039, 106.817, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, -50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [45.7507, -45.8773, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [47.2231, 98.4754, 14] + [ ecalVeto ] 0 : Hit 1: [44.8152, 94.3048, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [40.9348, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, -41.7066, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2815.6; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2994 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [45.7507, 12.512, 13] + [ ecalVeto ] 0 : Hit 2: [48.1586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [45.7507, 12.512, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, -8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [45.7507, -4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [48.1586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 3: [45.7507, 4.17066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6454.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2995 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -79.2426, 8] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -79.2426, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4533.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2996 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -45.8773, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7047.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2997 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5451.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2998 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -33.3653, 25] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -29.1946, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [45.7507, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [48.1586, -8.34132, 16] + [ ecalVeto ] 0 : Hit 2: [45.7507, -12.512, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [40.9348, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, -8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [40.9348, -4.17066, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4852.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 2999 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [111.302, -37.5359, 24] + [ ecalVeto ] 0 : Hit 1: [108.894, -33.3653, 23] + [ ecalVeto ] 0 : Hit 2: [111.302, -29.1946, 22] + [ ecalVeto ] 0 : Hit 3: [108.894, -25.024, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [81.8697, -33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [84.2776, -37.5359, 22] + [ ecalVeto ] 0 : Hit 2: [81.8697, -41.7066, 21] + [ ecalVeto ] 0 : Hit 3: [84.2776, -37.5359, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 69.2808, 12] + [ ecalVeto ] 0 : Hit 1: [-61.6707, 65.1101, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 50.0479, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 50.0479, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3302.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3000 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [59.2627, 177.718, 33] + [ ecalVeto ] 0 : Hit 1: [61.6707, 173.547, 32] + [ ecalVeto ] 0 : Hit 2: [59.2627, 169.377, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [47.2231, 140.182, 26] + [ ecalVeto ] 0 : Hit 1: [44.8152, 136.011, 25] + [ ecalVeto ] 0 : Hit 2: [47.2231, 131.841, 24] + [ ecalVeto ] 0 : Hit 3: [44.8152, 127.67, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [39.9993, 119.329, 22] + [ ecalVeto ] 0 : Hit 1: [37.5914, 115.158, 21] + [ ecalVeto ] 0 : Hit 2: [39.9993, 110.987, 20] + [ ecalVeto ] 0 : Hit 3: [37.5914, 106.817, 19] + [ ecalVeto ] 0 : Hit 4: [39.9993, 102.646, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -211.083, 21] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -206.913, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [32.7755, 90.1341, 16] + [ ecalVeto ] 0 : Hit 1: [30.3676, 85.9634, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [26.4873, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3649.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3001 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -69.2808, 24] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -65.1101, 23] + [ ecalVeto ] 0 : Hit 2: [-59.2627, -69.2808, 22] + [ ecalVeto ] 0 : Hit 3: [-61.6707, -65.1101, 21] + [ ecalVeto ] 0 : Hit 4: [-60.1983, -62.5599, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 16] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -45.8773, 15] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -41.7066, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6635.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3002 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -110.987, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -106.817, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [119.461, -73.4515, 20] + [ ecalVeto ] 0 : Hit 1: [117.053, -77.6221, 19] + [ ecalVeto ] 0 : Hit 2: [119.461, -73.4515, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [112.237, -77.6221, 18] + [ ecalVeto ] 0 : Hit 1: [109.829, -73.4515, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -77.6221, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 15] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -65.1101, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -62.5599, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6807.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3003 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4414.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3004 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3202.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3005 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [45.7507, -70.9012, 5] + [ ecalVeto ] 0 : Hit 1: [45.7507, -70.9012, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5965.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3006 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [111.302, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [108.894, 50.0479, 13] + [ ecalVeto ] 0 : Hit 2: [111.302, 45.8773, 12] + [ ecalVeto ] 0 : Hit 3: [108.894, 41.7066, 11] + [ ecalVeto ] 0 : Hit 4: [111.302, 37.5359, 10] + [ ecalVeto ] 0 : Hit 5: [108.894, 33.3653, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3705.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3007 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4203.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3008 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -33.3653, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 41.7066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 16.6826, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6486.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3009 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 21 + [ ecalVeto ] 0 : Beginning track merging using 21 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 21 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 148.523, 31] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 148.523, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 161.035, 29] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 156.865, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 66.7306, 15] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 62.5599, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 41.7066, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 37.5359, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 4.17066, 10] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 6: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [33.711, -75.0719, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, -70.9012, 7] + [ ecalVeto ] 0 : Hit 2: [33.711, -75.0719, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 5] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 1] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -16.6826, 0] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [16.8555, -54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -58.3892, 4] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -12.512, 2] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -8.34132, 1] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -12.512, 0] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 3] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 1] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 2] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 21 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6108.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3010 Brem photon produced 78 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [52.9745, -50.0479, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7355.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3011 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4068.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3012 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, 102.646, 20] + [ ecalVeto ] 0 : Hit 1: [8.69618, 98.4754, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -4.17066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6586.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3013 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4788.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3014 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -87.5839, 23] + [ ecalVeto ] 0 : Hit 1: [4.81586, -83.4132, 22] + [ ecalVeto ] 0 : Hit 2: [2.40793, -87.5839, 21] + [ ecalVeto ] 0 : Hit 3: [4.81586, -91.7545, 20] + [ ecalVeto ] 0 : Hit 4: [2.40793, -95.9252, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-94.4462, 33.3653, 22] + [ ecalVeto ] 0 : Hit 1: [-96.8541, 29.1946, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-102.606, 69.2808, 18] + [ ecalVeto ] 0 : Hit 1: [-105.013, 73.4515, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2152.93; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3015 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [66.4865, 90.1341, 25] + [ ecalVeto ] 0 : Hit 1: [68.8945, 94.3048, 24] + [ ecalVeto ] 0 : Hit 2: [66.4865, 98.4754, 23] + [ ecalVeto ] 0 : Hit 3: [68.8945, 102.646, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [19.2635, 50.0479, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5208.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3016 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, 106.817, 19] + [ ecalVeto ] 0 : Hit 1: [-1.47238, 102.646, 18] + [ ecalVeto ] 0 : Hit 2: [-3.88031, 98.4754, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5393.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3017 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3861.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3018 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -77.6221, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [83.3421, 52.5982, 18] + [ ecalVeto ] 0 : Hit 1: [81.8697, 50.0479, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5368.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3019 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3019 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 16 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2342.53; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3020 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6697.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3021 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 66.7306, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 4.17066, 12] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 8.34132, 11] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 4.17066, 10] + [ ecalVeto ] 0 : Hit 6: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 7: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5130.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3022 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-74.6459, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-69.83, 12.512, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-116.118, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-118.525, 8.34132, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-94.4462, -2.36672e-14, 6] + [ ecalVeto ] 0 : Hit 1: [-96.8541, 4.17066, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4867.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3023 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, -77.6221, 14] + [ ecalVeto ] 0 : Hit 1: [68.8945, -77.6221, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3568.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3024 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 8: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 9: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 70.9012, 4] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 66.7306, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 66.7306, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 62.5599, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5524.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3025 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -56.7688, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -52.5982, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 85.9634, 15] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 81.7928, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 75.0719, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 70.9012, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 1] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6002.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3026 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [117.053, 102.646, 27] + [ ecalVeto ] 0 : Hit 1: [119.461, 106.817, 26] + [ ecalVeto ] 0 : Hit 2: [117.053, 102.646, 25] + [ ecalVeto ] 0 : Hit 3: [119.461, 98.4754, 24] + [ ecalVeto ] 0 : Hit 4: [119.461, 98.4754, 22] + [ ecalVeto ] 0 : Hit 5: [126.685, 102.646, 24] + [ ecalVeto ] 0 : Hit 6: [124.277, 98.4754, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [105.013, 90.1341, 20] + [ ecalVeto ] 0 : Hit 1: [102.606, 85.9634, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4893.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3027 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-33.711, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -12.512, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7317.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3028 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [112.237, 69.2808, 16] + [ ecalVeto ] 0 : Hit 1: [109.829, 65.1101, 15] + [ ecalVeto ] 0 : Hit 2: [111.302, 62.5599, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [97.7897, 69.2808, 14] + [ ecalVeto ] 0 : Hit 1: [95.3817, 65.1101, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2254.61; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3029 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, 12.512, 21] + [ ecalVeto ] 0 : Hit 1: [-137.789, 16.6826, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, 16.6826, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 50.0479, 8] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 50.0479, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [109.829, -131.841, 9] + [ ecalVeto ] 0 : Hit 1: [109.829, -131.841, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 54.2186, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 111 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5779.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3030 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -29.1946, 11] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -25.024, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5493.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3031 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6150.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3032 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 19 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2590.97; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3033 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2729.13; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3034 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 152.694, 21] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 156.865, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 14] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 37.5359, 13] + [ ecalVeto ] 0 : Hit 3: [-52.9745, 33.3653, 12] + [ ecalVeto ] 0 : Hit 4: [-52.9745, 25.024, 14] + [ ecalVeto ] 0 : Hit 5: [-55.3824, 29.1946, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [40.9348, 20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [38.5269, 25.024, 13] + [ ecalVeto ] 0 : Hit 3: [40.9348, 20.8533, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 29.1946, 10] + [ ecalVeto ] 0 : Hit 4: [-45.7507, 29.1946, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 37.5359, 11] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 33.3653, 10] + [ ecalVeto ] 0 : Hit 4: [-40.9348, 37.5359, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7673.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3035 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 13 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2650.82; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3036 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 24 + [ ecalVeto ] 0 : Beginning track merging using 24 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 20 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [74.6459, 37.5359, 33] + [ ecalVeto ] 0 : Hit 1: [77.0538, 33.3653, 32] + [ ecalVeto ] 0 : Hit 2: [74.6459, 37.5359, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, 37.5359, 30] + [ ecalVeto ] 0 : Hit 1: [67.4221, 33.3653, 29] + [ ecalVeto ] 0 : Hit 2: [69.83, 29.1946, 28] + [ ecalVeto ] 0 : Hit 3: [67.4221, 33.3653, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [62.6062, 33.3653, 26] + [ ecalVeto ] 0 : Hit 1: [60.1983, 29.1946, 25] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [55.3824, 29.1946, 24] + [ ecalVeto ] 0 : Hit 1: [52.9745, 33.3653, 23] + [ ecalVeto ] 0 : Hit 2: [55.3824, 29.1946, 22] + [ ecalVeto ] 0 : Hit 3: [52.9745, 33.3653, 21] + [ ecalVeto ] 0 : Hit 4: [48.1586, 33.3653, 22] + [ ecalVeto ] 0 : Hit 5: [48.1586, 33.3653, 20] + [ ecalVeto ] 0 : Hit 6: [45.7507, 29.1946, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [81.8697, 50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [83.3421, 52.5982, 22] + [ ecalVeto ] 0 : Hit 2: [83.3421, 52.5982, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [89.0935, 45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [89.6303, 41.7066, 20] + [ ecalVeto ] 0 : Hit 2: [89.6303, 41.7066, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [69.83, 29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [67.4221, 33.3653, 17] + [ ecalVeto ] 0 : Hit 2: [69.83, 29.1946, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [40.9348, 29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [38.5269, 25.024, 17] + [ ecalVeto ] 0 : Hit 2: [40.9348, 29.1946, 16] + [ ecalVeto ] 0 : Hit 3: [38.5269, 25.024, 15] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [45.7507, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [48.1586, 50.0479, 16] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [60.1983, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [62.6062, 33.3653, 16] + [ ecalVeto ] 0 : Hit 2: [60.1983, 29.1946, 15] + [ ecalVeto ] 0 : Hit 3: [55.3824, 29.1946, 16] + [ ecalVeto ] 0 : Hit 4: [52.9745, 33.3653, 15] + [ ecalVeto ] 0 : Hit 5: [55.3824, 29.1946, 14] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [62.6062, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [60.1983, 37.5359, 15] + [ ecalVeto ] 0 : Hit 2: [55.3824, 37.5359, 16] + [ ecalVeto ] 0 : Hit 3: [55.3824, 37.5359, 14] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [48.1586, 33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [45.7507, 29.1946, 13] + [ ecalVeto ] 0 : Hit 2: [48.1586, 25.024, 12] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [33.711, 25.024, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 29.1946, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 25.024, 12] + [ ecalVeto ] 0 : Hit 3: [33.711, 25.024, 10] + [ ecalVeto ] 0 : Hit 4: [40.9348, 20.8533, 12] + [ ecalVeto ] 0 : Hit 5: [38.5269, 25.024, 11] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-104.078, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-101.67, 54.2186, 12] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [40.9348, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, 33.3653, 11] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [26.4873, 29.1946, 10] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 20 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4341.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3037 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-88.1579, -77.6221, 20] + [ ecalVeto ] 0 : Hit 1: [-90.5659, -73.4515, 19] + [ ecalVeto ] 0 : Hit 2: [-88.1579, -69.2808, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-80.9341, -65.1101, 18] + [ ecalVeto ] 0 : Hit 1: [-83.3421, -60.9395, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -52.5982, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -50.0479, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -56.7688, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -52.5982, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 16] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 15] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 13] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5748.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3038 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [66.4865, 98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [68.8945, 94.3048, 20] + [ ecalVeto ] 0 : Hit 2: [66.4865, 90.1341, 19] + [ ecalVeto ] 0 : Hit 3: [68.8945, 85.9634, 18] + [ ecalVeto ] 0 : Hit 4: [66.4865, 81.7928, 17] + [ ecalVeto ] 0 : Hit 5: [68.8945, 77.6221, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4097.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3039 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [-40.9348, -12.512, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -4.17066, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5243.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3040 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4842.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3041 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -4.17066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -85.9634, 4] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -81.7928, 3] + [ ecalVeto ] 0 : Hit 2: [-61.6707, -81.7928, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3212.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3042 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, -45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-108.894, -41.7066, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5975.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3043 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 79.2426, 23] + [ ecalVeto ] 0 : Hit 1: [19.2635, 75.0719, 22] + [ ecalVeto ] 0 : Hit 2: [16.8555, 70.9012, 21] + [ ecalVeto ] 0 : Hit 3: [19.2635, 66.7306, 20] + [ ecalVeto ] 0 : Hit 4: [16.8555, 62.5599, 19] + [ ecalVeto ] 0 : Hit 5: [19.2635, 58.3892, 18] + [ ecalVeto ] 0 : Hit 6: [16.8555, 54.2186, 17] + [ ecalVeto ] 0 : Hit 7: [19.2635, 50.0479, 16] + [ ecalVeto ] 0 : Hit 8: [16.8555, 45.8773, 15] + [ ecalVeto ] 0 : Hit 9: [19.2635, 41.7066, 14] + [ ecalVeto ] 0 : Hit 10: [16.8555, 37.5359, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 41.7066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5821.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3044 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 186.059, 19] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 181.889, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6109.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3045 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [66.4865, 140.182, 31] + [ ecalVeto ] 0 : Hit 1: [68.8945, 144.353, 30] + [ ecalVeto ] 0 : Hit 2: [66.4865, 140.182, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, -140.182, 29] + [ ecalVeto ] 0 : Hit 1: [-102.606, -136.011, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -136.011, 27] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -131.841, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-108.894, -41.7066, 22] + [ ecalVeto ] 0 : Hit 1: [-111.302, -45.8773, 21] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -102.646, 19] + [ ecalVeto ] 0 : Hit 1: [-52.039, -98.4754, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -90.1341, 15] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -94.3048, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -98.4754, 13] + [ ecalVeto ] 0 : Hit 1: [-15.92, -102.646, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4552; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3046 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 686.409; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3047 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [205.211, 58.3892, 28] + [ ecalVeto ] 0 : Hit 1: [202.803, 54.2186, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 165 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7863.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3048 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, 127.67, 26] + [ ecalVeto ] 0 : Hit 1: [52.039, 123.499, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [39.9993, 85.9634, 16] + [ ecalVeto ] 0 : Hit 1: [37.5914, 81.7928, 15] + [ ecalVeto ] 0 : Hit 2: [39.9993, 77.6221, 14] + [ ecalVeto ] 0 : Hit 3: [38.5269, 75.0719, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4760.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3049 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [112.237, -94.3048, 22] + [ ecalVeto ] 0 : Hit 1: [109.829, -90.1341, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [105.013, -81.7928, 20] + [ ecalVeto ] 0 : Hit 1: [102.606, -77.6221, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4469.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3050 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 18 + [ ecalVeto ] 0 : Beginning track merging using 18 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 16 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, -148.523, 32] + [ ecalVeto ] 0 : Hit 1: [88.1579, -144.353, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [66.4865, -123.499, 27] + [ ecalVeto ] 0 : Hit 1: [68.8945, -119.329, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [59.2627, -119.329, 25] + [ ecalVeto ] 0 : Hit 1: [61.6707, -115.158, 24] + [ ecalVeto ] 0 : Hit 2: [59.2627, -110.987, 23] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [54.4469, -110.987, 22] + [ ecalVeto ] 0 : Hit 1: [52.039, -106.817, 21] + [ ecalVeto ] 0 : Hit 2: [52.039, -106.817, 19] + [ ecalVeto ] 0 : Hit 3: [47.2231, -106.817, 20] + [ ecalVeto ] 0 : Hit 4: [47.2231, -106.817, 18] + [ ecalVeto ] 0 : Hit 5: [44.8152, -102.646, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [39.9993, -102.646, 16] + [ ecalVeto ] 0 : Hit 1: [37.5914, -98.4754, 15] + [ ecalVeto ] 0 : Hit 2: [39.9993, -94.3048, 14] + [ ecalVeto ] 0 : Hit 3: [37.5914, -90.1341, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [161.868, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [159.46, 4.17066, 13] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [30.3676, -85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [32.7755, -81.7928, 12] + [ ecalVeto ] 0 : Hit 2: [31.3031, -79.2426, 11] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [26.4873, -79.2426, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -75.0719, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -70.9012, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, -37.5359, 1] + [ ecalVeto ] 0 : Hit 8: [4.81586, -41.7066, 0] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -45.8773, 3] + [ ecalVeto ] 0 : Hit 4: [19.2635, -41.7066, 2] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -110.987, 5] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -106.817, 4] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-33.711, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -20.8533, 4] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -20.8533, 3] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -29.1946, 2] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 0] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -75.0719, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -70.9012, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 16 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5417.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3051 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, -79.2426, 11] + [ ecalVeto ] 0 : Hit 1: [-137.789, -75.0719, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-102.606, -60.9395, 10] + [ ecalVeto ] 0 : Hit 1: [-105.013, -65.1101, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5315.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3052 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -58.3892, 7] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -54.2186, 6] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -54.2186, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -79.2426, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -75.0719, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 140.182, 1] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 136.011, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5784.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3053 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, 37.5359, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4759.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3054 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, 144.353, 24] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 140.182, 23] + [ ecalVeto ] 0 : Hit 2: [-15.92, 136.011, 22] + [ ecalVeto ] 0 : Hit 3: [-18.3279, 131.841, 21] + [ ecalVeto ] 0 : Hit 4: [-15.92, 127.67, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2338.99; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3055 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 54.2186, 15] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 50.0479, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 79.2426, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 75.0719, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 50.0479, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [30.3676, 110.987, 9] + [ ecalVeto ] 0 : Hit 1: [32.7755, 106.817, 8] + [ ecalVeto ] 0 : Hit 2: [30.3676, 110.987, 7] + [ ecalVeto ] 0 : Hit 3: [32.7755, 106.817, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7709.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3056 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3056 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 18 + [ ecalVeto ] 0 : Beginning track merging using 18 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 17 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-173.908, 4.17066, 32] + [ ecalVeto ] 0 : Hit 1: [-176.316, -2.36672e-14, 31] + [ ecalVeto ] 0 : Hit 2: [-173.908, 4.17066, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-169.092, 4.17066, 29] + [ ecalVeto ] 0 : Hit 1: [-166.684, 8.34132, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, 16.6826, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, 20.8533, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, 25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, 20.8533, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-111.302, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-104.078, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, 20.8533, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 8.34132, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [12.0397, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -58.3892, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -54.2186, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, -58.3892, 7] + [ ecalVeto ] 0 : Hit 6: [2.40793, -62.5599, 9] + [ ecalVeto ] 0 : Hit 7: [4.81586, -58.3892, 8] + [ ecalVeto ] 0 : Hit 8: [2.40793, -54.2186, 7] + [ ecalVeto ] 0 : Hit 9: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 10: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -37.5359, 9] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 6] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -16.6826, 5] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 4] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 17 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7078; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3057 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7108.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3058 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [118.525, 50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [116.118, 45.8773, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, -16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, -20.8533, 8] + [ ecalVeto ] 0 : Hit 4: [26.4873, -20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 6: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6386.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3059 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 22 + [ ecalVeto ] 0 : Beginning track merging using 22 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 20 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 223.595, 31] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 219.425, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 173.547, 27] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 169.377, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 123.499, 23] + [ ecalVeto ] 0 : Hit 1: [-15.92, 119.329, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 79.2426, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, 75.0719, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [18.3279, -148.523, 16] + [ ecalVeto ] 0 : Hit 1: [15.92, -144.353, 15] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [-60.1983, 29.1946, 12] + [ ecalVeto ] 0 : Hit 4: [-62.6062, 25.024, 13] + [ ecalVeto ] 0 : Hit 5: [-60.1983, 20.8533, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [15.92, -119.329, 13] + [ ecalVeto ] 0 : Hit 1: [18.3279, -115.158, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 11] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 10] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 5: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [9.63173, -83.4132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -79.2426, 8] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 20 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4051.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3060 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 26] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 24] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 23] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 22] + [ ecalVeto ] 0 : Hit 4: [16.8555, 29.1946, 21] + [ ecalVeto ] 0 : Hit 5: [16.8555, 29.1946, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 15] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 14] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2935.5; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3061 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -202.742, 31] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -198.571, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -190.23, 29] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -186.059, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -173.547, 27] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -169.377, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [47.2231, 156.865, 20] + [ ecalVeto ] 0 : Hit 1: [44.8152, 152.694, 19] + [ ecalVeto ] 0 : Hit 2: [47.2231, 156.865, 18] + [ ecalVeto ] 0 : Hit 3: [44.8152, 152.694, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [32.7755, 148.523, 18] + [ ecalVeto ] 0 : Hit 1: [30.3676, 144.353, 17] + [ ecalVeto ] 0 : Hit 2: [32.7755, 148.523, 16] + [ ecalVeto ] 0 : Hit 3: [30.3676, 144.353, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 77.6221, 8] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 73.4515, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 116 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5340; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3062 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [31.3031, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [33.711, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 4: [33.711, -2.66454e-15, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3308.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3063 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6601.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3064 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2809.44; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3065 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4709.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3066 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 12 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2360.51; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3067 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5836.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3068 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [154.644, 54.2186, 22] + [ ecalVeto ] 0 : Hit 1: [152.237, 50.0479, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [140.197, 45.8773, 20] + [ ecalVeto ] 0 : Hit 1: [137.789, 41.7066, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5430.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3069 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 2] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 1] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6669.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3070 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3070 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 1] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -50.0479, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7225.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3071 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -50.0479, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6783.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3072 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, -16.6826, 22] + [ ecalVeto ] 0 : Hit 1: [62.6062, -16.6826, 20] + [ ecalVeto ] 0 : Hit 2: [60.1983, -20.8533, 19] + [ ecalVeto ] 0 : Hit 3: [62.6062, -16.6826, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2843.01; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3073 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-116.118, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-118.525, 33.3653, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-123.341, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-125.749, 37.5359, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 62.5599, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 58.3892, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6468.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3074 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, -50.0479, 5] + [ ecalVeto ] 0 : Hit 2: [26.4873, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7971.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3075 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5032.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3076 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 136.011, 26] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 136.011, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4347.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3077 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 22] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 21] + [ ecalVeto ] 0 : Hit 2: [4.81586, 66.7306, 20] + [ ecalVeto ] 0 : Hit 3: [2.40793, 62.5599, 19] + [ ecalVeto ] 0 : Hit 4: [4.81586, 58.3892, 18] + [ ecalVeto ] 0 : Hit 5: [2.40793, 54.2186, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -58.3892, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5489.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3078 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-116.118, -4.17066, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, 54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, 50.0479, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, 45.8773, 8] + [ ecalVeto ] 0 : Hit 4: [24.0793, 41.7066, 7] + [ ecalVeto ] 0 : Hit 5: [16.8555, 45.8773, 9] + [ ecalVeto ] 0 : Hit 6: [19.2635, 50.0479, 8] + [ ecalVeto ] 0 : Hit 7: [16.8555, 45.8773, 7] + [ ecalVeto ] 0 : Hit 8: [19.2635, 41.7066, 6] + [ ecalVeto ] 0 : Hit 9: [16.8555, 45.8773, 5] + [ ecalVeto ] 0 : Hit 10: [19.2635, 41.7066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6281.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3079 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5718.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3080 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 20 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3657.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3081 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [15.92, -152.694, 23] + [ ecalVeto ] 0 : Hit 1: [18.3279, -148.523, 22] + [ ecalVeto ] 0 : Hit 2: [15.92, -144.353, 21] + [ ecalVeto ] 0 : Hit 3: [18.3279, -140.182, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [18.3279, -123.499, 18] + [ ecalVeto ] 0 : Hit 1: [15.92, -119.329, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -75.0719, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -70.9012, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -66.7306, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -62.5599, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -58.3892, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5303.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3082 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -79.2426, 28] + [ ecalVeto ] 0 : Hit 1: [9.63173, -75.0719, 27] + [ ecalVeto ] 0 : Hit 2: [12.0397, -70.9012, 26] + [ ecalVeto ] 0 : Hit 3: [9.63173, -66.7306, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [52.9745, -2.66454e-15, 27] + [ ecalVeto ] 0 : Hit 1: [55.3824, 4.17066, 26] + [ ecalVeto ] 0 : Hit 2: [52.9745, -2.66454e-15, 25] + [ ecalVeto ] 0 : Hit 3: [55.3824, 4.17066, 24] + [ ecalVeto ] 0 : Hit 4: [52.9745, -2.66454e-15, 23] + [ ecalVeto ] 0 : Hit 5: [55.3824, -4.17066, 22] + [ ecalVeto ] 0 : Hit 6: [52.9745, -2.66454e-15, 21] + [ ecalVeto ] 0 : Hit 7: [55.3824, -4.17066, 20] + [ ecalVeto ] 0 : Hit 8: [52.9745, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 9: [48.1586, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 10: [48.1586, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 11: [45.7507, 4.17066, 17] + [ ecalVeto ] 0 : Hit 12: [48.1586, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 13: [45.7507, 4.17066, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 24] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 23] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 22] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 21] + [ ecalVeto ] 0 : Hit 4: [2.40793, -45.8773, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -106.817, 22] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -102.646, 21] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 18] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 14] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 16] + [ ecalVeto ] 0 : Hit 2: [-33.711, -58.3892, 15] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3036.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3083 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4915.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3084 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -20.8533, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3752.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3085 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 131.841, 32] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 127.67, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [83.3421, -102.646, 28] + [ ecalVeto ] 0 : Hit 1: [80.9341, -98.4754, 27] + [ ecalVeto ] 0 : Hit 2: [83.3421, -94.3048, 26] + [ ecalVeto ] 0 : Hit 3: [80.9341, -98.4754, 25] + [ ecalVeto ] 0 : Hit 4: [83.3421, -94.3048, 24] + [ ecalVeto ] 0 : Hit 5: [80.9341, -98.4754, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 85.9634, 25] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 83.4132, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 70.9012, 23] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 66.7306, 22] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 62.5599, 21] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 58.3892, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 18] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 41.7066, 17] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 37.5359, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [47.2231, -73.4515, 16] + [ ecalVeto ] 0 : Hit 1: [45.7507, -70.9012, 15] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1667.46; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3086 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 22] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4944.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3087 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6118.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3088 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [111.302, 45.8773, 28] + [ ecalVeto ] 0 : Hit 1: [108.894, 41.7066, 27] + [ ecalVeto ] 0 : Hit 2: [111.302, 37.5359, 26] + [ ecalVeto ] 0 : Hit 3: [108.894, 33.3653, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [118.525, 33.3653, 26] + [ ecalVeto ] 0 : Hit 1: [116.118, 29.1946, 25] + [ ecalVeto ] 0 : Hit 2: [118.525, 33.3653, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1897.3; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3089 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3089 Brem photon produced 64 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 18] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5646.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3090 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 17 + [ ecalVeto ] 0 : Beginning track merging using 17 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-219.659, 25.024, 33] + [ ecalVeto ] 0 : Hit 1: [-217.251, 29.1946, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 32] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 31] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 29] + [ ecalVeto ] 0 : Hit 3: [19.2635, -2.66454e-15, 30] + [ ecalVeto ] 0 : Hit 4: [19.2635, -2.66454e-15, 28] + [ ecalVeto ] 0 : Hit 5: [16.8555, 4.17066, 27] + [ ecalVeto ] 0 : Hit 6: [19.2635, 8.34132, 26] + [ ecalVeto ] 0 : Hit 7: [16.8555, 4.17066, 25] + [ ecalVeto ] 0 : Hit 8: [19.2635, 8.34132, 24] + [ ecalVeto ] 0 : Hit 9: [16.8555, 12.512, 23] + [ ecalVeto ] 0 : Hit 10: [16.8555, 12.512, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-205.211, 25.024, 31] + [ ecalVeto ] 0 : Hit 1: [-202.803, 29.1946, 30] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-190.763, 25.024, 29] + [ ecalVeto ] 0 : Hit 1: [-188.356, 29.1946, 28] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-169.092, 29.1946, 25] + [ ecalVeto ] 0 : Hit 1: [-166.684, 25.024, 24] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-152.237, 25.024, 22] + [ ecalVeto ] 0 : Hit 1: [-154.644, 29.1946, 21] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 22] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 20] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 19] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 18] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 17] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 16] + [ ecalVeto ] 0 : Hit 6: [9.63173, 16.6826, 15] + [ ecalVeto ] 0 : Hit 7: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 14] + [ ecalVeto ] 0 : Hit 9: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 10: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 11: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 12: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 13: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 14: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 15: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 16: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-147.421, 25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-145.013, 29.1946, 20] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [31.3031, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [33.711, 25.024, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 12] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [55.3824, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [52.9745, 16.6826, 11] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 992.72; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3091 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [73.7103, 119.329, 27] + [ ecalVeto ] 0 : Hit 1: [76.1183, 115.158, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6664.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3092 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 144.353, 22] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 140.182, 21] + [ ecalVeto ] 0 : Hit 2: [-30.3676, 136.011, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 83.4132, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 79.2426, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 75.0719, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 79.2426, 9] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 75.0719, 8] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 75.0719, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 79.2426, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 83.4132, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3970.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3093 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, -8.34132, 20] + [ ecalVeto ] 0 : Hit 1: [60.1983, -4.17066, 19] + [ ecalVeto ] 0 : Hit 2: [62.6062, -8.34132, 18] + [ ecalVeto ] 0 : Hit 3: [60.1983, -12.512, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [38.5269, -25.024, 13] + [ ecalVeto ] 0 : Hit 3: [40.9348, -20.8533, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3667.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3094 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4257.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3095 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 50.0479, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, 45.8773, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 58.3892, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 54.2186, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6107.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3096 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-137.789, 8.34132, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-152.237, 8.34132, 18] + [ ecalVeto ] 0 : Hit 2: [-154.644, 4.17066, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-159.46, 12.512, 18] + [ ecalVeto ] 0 : Hit 1: [-161.868, 8.34132, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-95.3817, 115.158, 18] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 115.158, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 106.817, 16] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 102.646, 15] + [ ecalVeto ] 0 : Hit 2: [-80.9341, 98.4754, 14] + [ ecalVeto ] 0 : Hit 3: [-83.3421, 94.3048, 13] + [ ecalVeto ] 0 : Hit 4: [-80.9341, 90.1341, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-102.606, 94.3048, 14] + [ ecalVeto ] 0 : Hit 1: [-102.606, 94.3048, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [24.0793, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [26.4873, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4454.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3097 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5040.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3098 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6129.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3099 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -69.2808, 22] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -73.4515, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7785.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3100 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -4.17066, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6404.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3101 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 144.353, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 140.182, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 106.817, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 102.646, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4060.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3102 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4638.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3103 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9542.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3104 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 17] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 15] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 10: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 11: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4472.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3105 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, 66.7306, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, 62.5599, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, 58.3892, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, 41.7066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1970.77; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3106 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-1.47238, 102.646, 28] + [ ecalVeto ] 0 : Hit 1: [-3.88031, 98.4754, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 106.817, 28] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 102.646, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 91.7545, 25] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 87.5839, 24] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 83.4132, 23] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 79.2426, 22] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 75.0719, 21] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 70.9012, 20] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 66.7306, 19] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 62.5599, 18] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 58.3892, 17] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 62.5599, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3612.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3107 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [-33.711, 8.34132, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 2] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5056.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3108 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.039, -73.4515, 18] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -77.6221, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3038.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3109 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 131.841, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 127.67, 20] + [ ecalVeto ] 0 : Hit 2: [-76.1183, 123.499, 19] + [ ecalVeto ] 0 : Hit 3: [-73.7103, 119.329, 18] + [ ecalVeto ] 0 : Hit 4: [-76.1183, 115.158, 17] + [ ecalVeto ] 0 : Hit 5: [-73.7103, 110.987, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 102.646, 15] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 106.817, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 98.4754, 13] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 94.3048, 12] + [ ecalVeto ] 0 : Hit 2: [-61.6707, 90.1341, 11] + [ ecalVeto ] 0 : Hit 3: [-59.2627, 85.9634, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 54.2186, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -50.0479, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4346.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3110 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Hit 8: [4.81586, -25.024, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2150.82; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3111 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.88031, 123.499, 24] + [ ecalVeto ] 0 : Hit 1: [3.34348, 119.329, 23] + [ ecalVeto ] 0 : Hit 2: [3.88031, 115.158, 22] + [ ecalVeto ] 0 : Hit 3: [3.34348, 110.987, 21] + [ ecalVeto ] 0 : Hit 4: [3.88031, 106.817, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 79.2426, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, 75.0719, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, 70.9012, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, 66.7306, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, 62.5599, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3553.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3112 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 29.1946, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3164.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3113 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [-69.83, -37.5359, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5662.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3114 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1973.92; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3115 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 90.1341, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 85.9634, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5806.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3116 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [119.461, 90.1341, 22] + [ ecalVeto ] 0 : Hit 1: [117.053, 85.9634, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8332.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3117 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3540.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3118 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3118 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 62.5599, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, 58.3892, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 50.0479, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 45.8773, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 9: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 29.1946, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [68.8945, 77.6221, 2] + [ ecalVeto ] 0 : Hit 1: [66.4865, 73.4515, 1] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4575.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3119 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 16 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2895.67; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3120 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, -41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-159.46, -37.5359, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, -29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, -25.024, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 66.7306, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 70.9012, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 62.5599, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 66.7306, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4245.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3121 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-66.4865, 90.1341, 26] + [ ecalVeto ] 0 : Hit 1: [-68.8945, 85.9634, 25] + [ ecalVeto ] 0 : Hit 2: [-66.4865, 81.7928, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 90.1341, 16] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 85.9634, 15] + [ ecalVeto ] 0 : Hit 2: [-37.5914, 81.7928, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5812.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3122 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [126.685, -85.9634, 6] + [ ecalVeto ] 0 : Hit 1: [124.277, -81.7928, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2346.48; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3123 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3372.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3124 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, 190.23, 23] + [ ecalVeto ] 0 : Hit 1: [11.1041, 194.401, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -90.1341, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3035.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3125 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2811.71; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3126 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2308.47; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3127 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-202.803, -45.8773, 2] + [ ecalVeto ] 0 : Hit 1: [-205.211, -41.7066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5947.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3128 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [84.2776, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [81.8697, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4321.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3129 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3426.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3130 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -50.0479, 15] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -45.8773, 14] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -45.8773, 12] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -45.8773, 13] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -45.8773, 11] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -37.5359, 0] + [ ecalVeto ] 0 : Hit 9: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 10: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 11: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 1] + [ ecalVeto ] 0 : Hit 5: [4.81586, -41.7066, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [62.6062, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [60.1983, -45.8773, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4641.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3131 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 28] + [ ecalVeto ] 0 : Hit 1: [26.4873, 70.9012, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 66.7306, 24] + [ ecalVeto ] 0 : Hit 1: [16.8555, 62.5599, 23] + [ ecalVeto ] 0 : Hit 2: [19.2635, 58.3892, 22] + [ ecalVeto ] 0 : Hit 3: [16.8555, 54.2186, 21] + [ ecalVeto ] 0 : Hit 4: [19.2635, 58.3892, 20] + [ ecalVeto ] 0 : Hit 5: [16.8555, 54.2186, 19] + [ ecalVeto ] 0 : Hit 6: [16.8555, 54.2186, 17] + [ ecalVeto ] 0 : Hit 7: [12.0397, 54.2186, 18] + [ ecalVeto ] 0 : Hit 8: [12.0397, 54.2186, 16] + [ ecalVeto ] 0 : Hit 9: [9.63173, 50.0479, 15] + [ ecalVeto ] 0 : Hit 10: [12.0397, 45.8773, 14] + [ ecalVeto ] 0 : Hit 11: [9.63173, 50.0479, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1450.78; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3132 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4544.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3133 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -102.646, 15] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -106.817, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -85.9634, 15] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -81.7928, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -90.1341, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6013.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3134 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3203.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3135 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 70.9012, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 75.0719, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 3] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6946.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3136 Brem photon produced 77 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -90.1341, 23] + [ ecalVeto ] 0 : Hit 1: [-102.606, -85.9634, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -77.6221, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -177.718, 17] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -181.889, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5552.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3137 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2980.07; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3138 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [38.5269, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [40.9348, -29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [33.711, -25.024, 10] + [ ecalVeto ] 0 : Hit 5: [31.3031, -20.8533, 9] + [ ecalVeto ] 0 : Hit 6: [33.711, -25.024, 8] + [ ecalVeto ] 0 : Hit 7: [31.3031, -20.8533, 7] + [ ecalVeto ] 0 : Hit 8: [33.711, -16.6826, 6] + [ ecalVeto ] 0 : Hit 9: [31.3031, -12.512, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [26.4873, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6000.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3139 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 190.23, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 186.059, 18] + [ ecalVeto ] 0 : Hit 2: [-90.5659, 181.889, 17] + [ ecalVeto ] 0 : Hit 3: [-88.1579, 177.718, 16] + [ ecalVeto ] 0 : Hit 4: [-90.5659, 173.547, 15] + [ ecalVeto ] 0 : Hit 5: [-88.1579, 169.377, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 110.987, 5] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 115.158, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4618.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3140 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 177.718, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, 173.547, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 90.1341, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3968.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3141 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 20.8533, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 29.1946, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6774.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3142 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -50.0479, 4] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -50.0479, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8435.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3143 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, 33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [62.6062, 33.3653, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [45.7507, 37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [48.1586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [48.1586, 33.3653, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [67.4221, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [69.83, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [67.4221, 25.024, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [31.3031, 20.8533, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5149.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3144 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5274.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3145 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 194.401, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 190.23, 22] + [ ecalVeto ] 0 : Hit 2: [-83.3421, 194.401, 21] + [ ecalVeto ] 0 : Hit 3: [-80.9341, 190.23, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 190.23, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 186.059, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 181.889, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 177.718, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-66.4865, 73.4515, 14] + [ ecalVeto ] 0 : Hit 1: [-68.8945, 69.2808, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4687.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3146 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -60.9395, 11] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -56.7688, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2886.76; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3147 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 87.5839, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 83.4132, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 79.2426, 14] + [ ecalVeto ] 0 : Hit 3: [12.0397, 79.2426, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3826.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3148 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 15 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 820.705; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3149 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [59.2627, 144.353, 31] + [ ecalVeto ] 0 : Hit 1: [61.6707, 148.523, 30] + [ ecalVeto ] 0 : Hit 2: [59.2627, 144.353, 29] + [ ecalVeto ] 0 : Hit 3: [61.6707, 148.523, 28] + [ ecalVeto ] 0 : Hit 4: [59.2627, 144.353, 27] + [ ecalVeto ] 0 : Hit 5: [61.6707, 140.182, 26] + [ ecalVeto ] 0 : Hit 6: [61.6707, 140.182, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 14] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -70.9012, 13] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -75.0719, 12] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -75.0719, 13] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -70.9012, 12] + [ ecalVeto ] 0 : Hit 6: [-19.2635, -75.0719, 11] + [ ecalVeto ] 0 : Hit 7: [-16.8555, -79.2426, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -98.4754, 15] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -94.3048, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -62.5599, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -58.3892, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3898.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3150 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [55.3824, -29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [52.9745, -33.3653, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3844.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3151 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [33.711, 41.7066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4386.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3152 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -79.2426, 20] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -75.0719, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 70.9012, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 66.7306, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3653.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3153 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5530.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3154 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -54.2186, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4827.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3155 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [94.4462, 41.7066, 29] + [ ecalVeto ] 0 : Hit 1: [94.4462, 41.7066, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [30.3676, 110.987, 17] + [ ecalVeto ] 0 : Hit 1: [32.7755, 106.817, 16] + [ ecalVeto ] 0 : Hit 2: [30.3676, 102.646, 15] + [ ecalVeto ] 0 : Hit 3: [32.7755, 98.4754, 14] + [ ecalVeto ] 0 : Hit 4: [30.3676, 94.3048, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2652.12; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3156 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, 98.4754, 24] + [ ecalVeto ] 0 : Hit 1: [30.3676, 94.3048, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 75.0719, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, 70.9012, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, 66.7306, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, 62.5599, 15] + [ ecalVeto ] 0 : Hit 4: [19.2635, 58.3892, 14] + [ ecalVeto ] 0 : Hit 5: [16.8555, 54.2186, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6195.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3157 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 25 + [ ecalVeto ] 0 : Beginning track merging using 25 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 21 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-166.684, -41.7066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -144.353, 19] + [ ecalVeto ] 0 : Hit 1: [-52.039, -140.182, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -90.1341, 15] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -85.9634, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 9] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [40.9348, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [38.5269, 8.34132, 9] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 8] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [38.5269, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [40.9348, -4.17066, 4] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 1] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [108.894, 16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [111.302, 20.8533, 0] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 21 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3942.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3158 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [112.237, -119.329, 20] + [ ecalVeto ] 0 : Hit 1: [109.829, -115.158, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6008; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3159 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, -54.2186, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, -58.3892, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -45.8773, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 6: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 8: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4003.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3160 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-130.565, 45.8773, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-130.565, 37.5359, 18] + [ ecalVeto ] 0 : Hit 1: [-132.973, 33.3653, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-101.67, 45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [-104.078, 50.0479, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [-69.83, 12.512, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [-60.1983, 20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [-62.6062, 25.024, 11] + [ ecalVeto ] 0 : Hit 5: [-60.1983, 29.1946, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [-77.0538, 33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-74.6459, 29.1946, 10] + [ ecalVeto ] 0 : Hit 4: [-74.6459, 29.1946, 12] + [ ecalVeto ] 0 : Hit 5: [-77.0538, 25.024, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-104.078, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-101.67, 37.5359, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [-82.4065, 29.1946, 11] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 20.8533, 9] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7683.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3161 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -2.36672e-14, 13] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-89.6303, 8.34132, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-94.4462, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-96.8541, 20.8533, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 81.7928, 1] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 85.9634, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5989.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3162 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4711.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3163 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, 123.499, 22] + [ ecalVeto ] 0 : Hit 1: [15.92, 119.329, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [11.1041, 110.987, 20] + [ ecalVeto ] 0 : Hit 1: [8.69618, 106.817, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5725.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3164 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 20] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 19] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 18] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 17] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 18] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 16] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 15] + [ ecalVeto ] 0 : Hit 7: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Hit 8: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 9: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 10: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 11: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 12: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 13: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 14: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 15: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4925.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3165 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 15 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3296.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3166 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [52.9745, 25.024, 13] + [ ecalVeto ] 0 : Hit 2: [55.3824, 29.1946, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4816.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3167 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -54.2186, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -33.3653, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5971.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3168 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [140.197, 12.512, 26] + [ ecalVeto ] 0 : Hit 1: [137.789, 8.34132, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [125.749, 12.512, 22] + [ ecalVeto ] 0 : Hit 1: [123.341, 8.34132, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4126.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3169 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 20.8533, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4704.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3170 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, 56.7688, 30] + [ ecalVeto ] 0 : Hit 1: [74.6459, 54.2186, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -102.646, 14] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -98.4754, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5557.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3171 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5741.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3172 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8080.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3173 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3871.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3174 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -58.3892, 12] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -54.2186, 11] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -50.0479, 10] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -54.2186, 9] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -50.0479, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 109 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6386.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3175 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [133.909, 115.158, 20] + [ ecalVeto ] 0 : Hit 1: [133.909, 115.158, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [97.7897, 119.329, 18] + [ ecalVeto ] 0 : Hit 1: [97.7897, 119.329, 16] + [ ecalVeto ] 0 : Hit 2: [105.013, 123.499, 18] + [ ecalVeto ] 0 : Hit 3: [105.013, 123.499, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [105.013, 106.817, 18] + [ ecalVeto ] 0 : Hit 1: [102.606, 102.646, 17] + [ ecalVeto ] 0 : Hit 2: [105.013, 98.4754, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [112.237, 127.67, 18] + [ ecalVeto ] 0 : Hit 1: [109.829, 131.841, 17] + [ ecalVeto ] 0 : Hit 2: [112.237, 127.67, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4908.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3176 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 236.107, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 231.937, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [23.1438, 148.523, 9] + [ ecalVeto ] 0 : Hit 1: [25.5517, 152.694, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [30.3676, 152.694, 7] + [ ecalVeto ] 0 : Hit 1: [32.7755, 156.865, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 8.34132, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6877.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3177 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5468.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3178 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-205.211, 8.34132, 33] + [ ecalVeto ] 0 : Hit 1: [-202.803, 4.17066, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-190.763, 8.34132, 31] + [ ecalVeto ] 0 : Hit 1: [-188.356, 4.17066, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, -4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-137.789, -8.34132, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, -8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, -12.512, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -33.3653, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 1] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4038.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3179 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -50.0479, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -41.7066, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4340.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3180 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -144.353, 27] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -140.182, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, -140.182, 27] + [ ecalVeto ] 0 : Hit 1: [-102.606, -136.011, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -119.329, 25] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -115.158, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3390.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3181 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -123.499, 15] + [ ecalVeto ] 0 : Hit 1: [-102.606, -119.329, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3734.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3182 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-102.606, -102.646, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 14] + [ ecalVeto ] 0 : Hit 1: [26.4873, -12.512, 12] + [ ecalVeto ] 0 : Hit 2: [24.0793, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [26.4873, -20.8533, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3321.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3183 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5394.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3184 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [66.4865, 65.1101, 17] + [ ecalVeto ] 0 : Hit 1: [66.4865, 65.1101, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, 54.2186, 16] + [ ecalVeto ] 0 : Hit 1: [52.9745, 58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [55.3824, 54.2186, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6333.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3185 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, 60.9395, 6] + [ ecalVeto ] 0 : Hit 1: [95.3817, 56.7688, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4597.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3186 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 45.8773, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [-33.711, 33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 37.5359, 12] + [ ecalVeto ] 0 : Hit 4: [-38.5269, 41.7066, 14] + [ ecalVeto ] 0 : Hit 5: [-40.9348, 45.8773, 13] + [ ecalVeto ] 0 : Hit 6: [-38.5269, 41.7066, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 29.1946, 15] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 33.3653, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 70.9012, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5612.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3187 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4958.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3188 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -102.646, 13] + [ ecalVeto ] 0 : Hit 1: [-52.039, -106.817, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6158.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3189 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, 115.158, 27] + [ ecalVeto ] 0 : Hit 1: [-117.053, 110.987, 26] + [ ecalVeto ] 0 : Hit 2: [-119.461, 115.158, 25] + [ ecalVeto ] 0 : Hit 3: [-117.053, 119.329, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3872.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3190 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-181.132, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [-183.54, -37.5359, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-137.789, 8.34132, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -8.34132, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4484.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3191 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5198.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3192 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, -131.841, 23] + [ ecalVeto ] 0 : Hit 1: [-145.948, -136.011, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 9: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3544.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3193 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 12 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2289.46; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3194 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -58.3892, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4517.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3195 Brem photon produced 94 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4092.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3196 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 60.9395, 18] + [ ecalVeto ] 0 : Hit 1: [67.4221, 58.3892, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3083.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3197 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 25.024, 22] + [ ecalVeto ] 0 : Hit 1: [45.7507, 20.8533, 21] + [ ecalVeto ] 0 : Hit 2: [48.1586, 16.6826, 20] + [ ecalVeto ] 0 : Hit 3: [45.7507, 12.512, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, -4.17066, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2587.91; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3198 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5899.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3199 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 148.523, 3] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 152.694, 2] + [ ecalVeto ] 0 : Hit 2: [-47.2231, 148.523, 1] + [ ecalVeto ] 0 : Hit 3: [-44.8152, 152.694, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5531.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3200 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-248.554, 8.34132, 31] + [ ecalVeto ] 0 : Hit 1: [-246.146, 4.17066, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-241.33, -4.17066, 29] + [ ecalVeto ] 0 : Hit 1: [-238.922, -8.34132, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-147.421, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-145.013, -12.512, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-125.749, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, -8.34132, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-104.078, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, -4.17066, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3185.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3201 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 33.3653, 2] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6321.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3202 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-123.341, -58.3892, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8063.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3203 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -58.3892, 12] + [ ecalVeto ] 0 : Hit 2: [-62.6062, -58.3892, 13] + [ ecalVeto ] 0 : Hit 3: [-60.1983, -54.2186, 12] + [ ecalVeto ] 0 : Hit 4: [-62.6062, -50.0479, 11] + [ ecalVeto ] 0 : Hit 5: [-60.1983, -45.8773, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -58.3892, 13] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -54.2186, 12] + [ ecalVeto ] 0 : Hit 3: [-48.1586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 4: [-45.7507, -54.2186, 10] + [ ecalVeto ] 0 : Hit 5: [-48.1586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 6: [-45.7507, -54.2186, 8] + [ ecalVeto ] 0 : Hit 7: [-45.7507, -45.8773, 10] + [ ecalVeto ] 0 : Hit 8: [-45.7507, -45.8773, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -58.3892, 12] + [ ecalVeto ] 0 : Hit 4: [-55.3824, -62.5599, 11] + [ ecalVeto ] 0 : Hit 5: [-52.9745, -66.7306, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Hit 4: [-38.5269, -58.3892, 10] + [ ecalVeto ] 0 : Hit 5: [-40.9348, -54.2186, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -66.7306, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7108.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3204 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [118.525, -25.024, 18] + [ ecalVeto ] 0 : Hit 1: [118.525, -25.024, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4484.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3205 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 144.353, 33] + [ ecalVeto ] 0 : Hit 1: [-138.725, 140.182, 32] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4285.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3206 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [66.4865, -156.865, 7] + [ ecalVeto ] 0 : Hit 1: [68.8945, -152.694, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5456.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3207 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3245.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3208 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [60.1983, -45.8773, 29] + [ ecalVeto ] 0 : Hit 1: [60.1983, -45.8773, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, -41.7066, 24] + [ ecalVeto ] 0 : Hit 1: [45.7507, -45.8773, 23] + [ ecalVeto ] 0 : Hit 2: [48.1586, -41.7066, 22] + [ ecalVeto ] 0 : Hit 3: [45.7507, -37.5359, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, -37.5359, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, -37.5359, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, -33.3653, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2927.7; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3209 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -52.5982, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -50.0479, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4346.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3210 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [170.028, 161.035, 30] + [ ecalVeto ] 0 : Hit 1: [167.62, 156.865, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, -54.2186, 29] + [ ecalVeto ] 0 : Hit 1: [-137.789, -50.0479, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -50.0479, 25] + [ ecalVeto ] 0 : Hit 1: [-116.118, -45.8773, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [119.461, 81.7928, 16] + [ ecalVeto ] 0 : Hit 1: [117.053, 77.6221, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3084.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3211 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4654.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3212 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -50.0479, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -37.5359, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-141.132, 94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-138.725, 90.1341, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-126.685, 77.6221, 15] + [ ecalVeto ] 0 : Hit 1: [-124.277, 73.4515, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6167.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3213 Brem photon produced 64 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [161.868, -83.4132, 16] + [ ecalVeto ] 0 : Hit 1: [159.46, -79.2426, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 62.5599, 13] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 58.3892, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6128.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3214 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4771.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3215 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5969.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3216 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3455.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3217 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -20.8533, 22] + [ ecalVeto ] 0 : Hit 1: [38.5269, -16.6826, 21] + [ ecalVeto ] 0 : Hit 2: [40.9348, -12.512, 20] + [ ecalVeto ] 0 : Hit 3: [38.5269, -8.34132, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -8.34132, 18] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 17] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 3: [31.3031, -4.17066, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2483.68; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3218 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, -136.011, 16] + [ ecalVeto ] 0 : Hit 1: [23.1438, -131.841, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [15.92, -102.646, 11] + [ ecalVeto ] 0 : Hit 1: [18.3279, -106.817, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [23.1438, -123.499, 9] + [ ecalVeto ] 0 : Hit 1: [25.5517, -127.67, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3257.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3219 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, 62.5599, 28] + [ ecalVeto ] 0 : Hit 1: [52.9745, 66.7306, 27] + [ ecalVeto ] 0 : Hit 2: [55.3824, 62.5599, 26] + [ ecalVeto ] 0 : Hit 3: [52.9745, 66.7306, 25] + [ ecalVeto ] 0 : Hit 4: [60.1983, 62.5599, 27] + [ ecalVeto ] 0 : Hit 5: [60.1983, 62.5599, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [54.4469, 69.2808, 28] + [ ecalVeto ] 0 : Hit 1: [54.4469, 69.2808, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 85.9634, 5] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 90.1341, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2553.66; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3220 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -79.2426, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -75.0719, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5943.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3221 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5396.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3222 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5920.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3223 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5985.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3224 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 12147.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3225 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-217.251, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-219.659, 50.0479, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-205.211, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-202.803, 45.8773, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-197.987, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-195.579, 41.7066, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6169.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3226 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, 16.6826, 22] + [ ecalVeto ] 0 : Hit 1: [60.1983, 12.512, 21] + [ ecalVeto ] 0 : Hit 2: [62.6062, 16.6826, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [52.9745, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [55.3824, 12.512, 18] + [ ecalVeto ] 0 : Hit 2: [52.9745, 16.6826, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [40.9348, 12.512, 14] + [ ecalVeto ] 0 : Hit 2: [38.5269, 16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [33.711, 16.6826, 14] + [ ecalVeto ] 0 : Hit 4: [33.711, 16.6826, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -79.2426, 1] + [ ecalVeto ] 0 : Hit 1: [19.2635, -83.4132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3858.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3227 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5971.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3228 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, -85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [52.039, -81.7928, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, -54.2186, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5427.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3229 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 90.1341, 3] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 90.1341, 1] + [ ecalVeto ] 0 : Hit 2: [-30.3676, 94.3048, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7647.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3230 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 2: [31.3031, -4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [33.711, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -33.3653, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6179.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3231 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, -37.5359, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -33.3653, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [-62.6062, -25.024, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -20.8533, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -2.36672e-14, 11] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 4.17066, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-104.078, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-101.67, -4.17066, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4743.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3232 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, -69.2808, 16] + [ ecalVeto ] 0 : Hit 1: [80.9341, -65.1101, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 25.024, 10] + [ ecalVeto ] 0 : Hit 3: [-52.9745, 25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4627.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3233 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, -81.7928, 26] + [ ecalVeto ] 0 : Hit 1: [88.1579, -77.6221, 25] + [ ecalVeto ] 0 : Hit 2: [90.5659, -73.4515, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-155.58, 144.353, 25] + [ ecalVeto ] 0 : Hit 1: [-153.172, 148.523, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 148.523, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 144.353, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 140.182, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 136.011, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3917.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3234 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, -127.67, 27] + [ ecalVeto ] 0 : Hit 1: [-109.829, -123.499, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-66.4865, -106.817, 22] + [ ecalVeto ] 0 : Hit 1: [-68.8945, -102.646, 21] + [ ecalVeto ] 0 : Hit 2: [-66.4865, -98.4754, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -54.2186, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1033.03; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3235 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4845.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3236 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4656.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3237 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1759.61; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3238 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 20] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 18] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 17] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8312.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3239 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2344.02; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3240 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-190.763, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-188.356, 20.8533, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-183.54, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-181.132, 25.024, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -58.3892, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-33.711, -16.6826, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4735.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3241 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [33.711, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [31.3031, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6351.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3242 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5984.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3243 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5804.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3244 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.039, 90.1341, 28] + [ ecalVeto ] 0 : Hit 1: [-54.4469, 85.9634, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 77.6221, 26] + [ ecalVeto ] 0 : Hit 1: [-61.6707, 73.4515, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-66.4865, 73.4515, 24] + [ ecalVeto ] 0 : Hit 1: [-68.8945, 69.2808, 23] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 65.1101, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5600.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3245 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3624.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3246 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4586.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3247 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 131.841, 25] + [ ecalVeto ] 0 : Hit 1: [-102.606, 127.67, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4356.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3248 Brem photon produced 77 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -95.9252, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, -91.7545, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, -87.5839, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 3] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6549.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3249 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4546.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3250 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 1: [-69.83, -4.17066, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -4.17066, 18] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -8.34132, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -83.4132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -79.2426, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4159.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3251 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 6: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 62.5599, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5983.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3252 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3252 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -66.7306, 22] + [ ecalVeto ] 0 : Hit 1: [45.7507, -62.5599, 21] + [ ecalVeto ] 0 : Hit 2: [48.1586, -66.7306, 20] + [ ecalVeto ] 0 : Hit 3: [45.7507, -62.5599, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2298.4; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3253 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, -45.8773, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [154.644, 70.9012, 22] + [ ecalVeto ] 0 : Hit 1: [154.644, 70.9012, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [145.013, 70.9012, 21] + [ ecalVeto ] 0 : Hit 1: [145.013, 70.9012, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -25.024, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [132.973, 66.7306, 20] + [ ecalVeto ] 0 : Hit 1: [130.565, 62.5599, 19] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [125.749, 70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [123.341, 66.7306, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1694.56; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3254 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-152.237, -41.7066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -29.1946, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 120 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5192.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3255 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -73.4515, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -69.2808, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [45.7507, -70.9012, 15] + [ ecalVeto ] 0 : Hit 1: [45.7507, -70.9012, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [26.4873, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -41.7066, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4913.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3256 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6809.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3257 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [123.341, 8.34132, 33] + [ ecalVeto ] 0 : Hit 1: [125.749, 12.512, 32] + [ ecalVeto ] 0 : Hit 2: [123.341, 8.34132, 31] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1151.3; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3258 Brem photon produced 82 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 33.3653, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4335.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3259 Brem photon produced 82 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3259 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4809.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3260 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [131.501, -85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [133.909, -81.7928, 18] + [ ecalVeto ] 0 : Hit 2: [131.501, -77.6221, 17] + [ ecalVeto ] 0 : Hit 3: [132.973, -75.0719, 16] + [ ecalVeto ] 0 : Hit 4: [130.565, -70.9012, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [-69.83, 54.2186, 15] + [ ecalVeto ] 0 : Hit 3: [-67.4221, 50.0479, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7168.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3261 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, 90.1341, 30] + [ ecalVeto ] 0 : Hit 1: [44.8152, 85.9634, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6531.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3262 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, -156.865, 19] + [ ecalVeto ] 0 : Hit 1: [11.1041, -161.035, 18] + [ ecalVeto ] 0 : Hit 2: [11.1041, -161.035, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [54.4469, 94.3048, 18] + [ ecalVeto ] 0 : Hit 1: [52.039, 90.1341, 17] + [ ecalVeto ] 0 : Hit 2: [54.4469, 85.9634, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 17] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 16] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 15] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 14] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 10: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 11: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 12: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 13: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 14: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 15: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 16: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5567.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3263 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4949.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3264 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, 211.083, 26] + [ ecalVeto ] 0 : Hit 1: [37.5914, 206.913, 25] + [ ecalVeto ] 0 : Hit 2: [39.9993, 202.742, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 186.059, 23] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 181.889, 22] + [ ecalVeto ] 0 : Hit 2: [-39.9993, 177.718, 21] + [ ecalVeto ] 0 : Hit 3: [-37.5914, 173.547, 20] + [ ecalVeto ] 0 : Hit 4: [-39.9993, 169.377, 19] + [ ecalVeto ] 0 : Hit 5: [-37.5914, 165.206, 18] + [ ecalVeto ] 0 : Hit 6: [-39.9993, 161.035, 17] + [ ecalVeto ] 0 : Hit 7: [-37.5914, 156.865, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 148.523, 15] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 144.353, 14] + [ ecalVeto ] 0 : Hit 2: [-32.7755, 140.182, 13] + [ ecalVeto ] 0 : Hit 3: [-30.3676, 136.011, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 123.499, 10] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 119.329, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4951.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3265 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6645.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3266 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3076.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3267 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 132 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6232.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3268 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5479.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3269 Brem photon produced 93 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6022.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3270 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2884.8; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3271 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 21 + [ ecalVeto ] 0 : Beginning track merging using 21 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 20 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 23] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -66.7306, 21] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -66.7306, 19] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -62.5599, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -66.7306, 22] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 20] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -66.7306, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 66.7306, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, 62.5599, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 62.5599, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 17] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -54.2186, 16] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -50.0479, 15] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -54.2186, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -58.3892, 17] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -58.3892, 15] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -62.5599, 17] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -58.3892, 16] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -54.2186, 15] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -58.3892, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 13] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 8: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 9: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 10: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Hit 11: [12.0397, -29.1946, 0] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 20 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6473.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3272 Brem photon produced 71 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11546; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3273 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4423.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3274 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3274 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5765.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3275 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [31.3031, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [33.711, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [31.3031, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9372.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3276 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5360.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3277 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4278.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3278 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2135.72; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3279 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3939.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3280 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 33] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 31] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 30] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 28] + [ ecalVeto ] 0 : Hit 4: [9.63173, 41.7066, 27] + [ ecalVeto ] 0 : Hit 5: [12.0397, 37.5359, 26] + [ ecalVeto ] 0 : Hit 6: [9.63173, 41.7066, 25] + [ ecalVeto ] 0 : Hit 7: [12.0397, 37.5359, 24] + [ ecalVeto ] 0 : Hit 8: [9.63173, 33.3653, 23] + [ ecalVeto ] 0 : Hit 9: [12.0397, 37.5359, 22] + [ ecalVeto ] 0 : Hit 10: [9.63173, 33.3653, 21] + [ ecalVeto ] 0 : Hit 11: [12.0397, 37.5359, 20] + [ ecalVeto ] 0 : Hit 12: [9.63173, 33.3653, 19] + [ ecalVeto ] 0 : Hit 13: [9.63173, 33.3653, 17] + [ ecalVeto ] 0 : Hit 14: [4.81586, 33.3653, 18] + [ ecalVeto ] 0 : Hit 15: [4.81586, 33.3653, 16] + [ ecalVeto ] 0 : Hit 16: [2.40793, 29.1946, 15] + [ ecalVeto ] 0 : Hit 17: [4.81586, 25.024, 14] + [ ecalVeto ] 0 : Hit 18: [2.40793, 29.1946, 13] + [ ecalVeto ] 0 : Hit 19: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 20: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2369.57; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3281 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -54.2186, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 1] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6807.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3282 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 37.5359, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6249.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3283 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [84.2776, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [81.8697, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4097.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3284 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -94.3048, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -85.9634, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -90.1341, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -77.6221, 20] + [ ecalVeto ] 0 : Hit 2: [-76.1183, -73.4515, 19] + [ ecalVeto ] 0 : Hit 3: [-73.7103, -69.2808, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -65.1101, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -54.2186, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5775.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3285 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -85.9634, 22] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -81.7928, 21] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -79.2426, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 66.7306, 18] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 66.7306, 16] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 62.5599, 15] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 58.3892, 14] + [ ecalVeto ] 0 : Hit 4: [-26.4873, 62.5599, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 16] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -62.5599, 15] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -58.3892, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 50.0479, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3898.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3286 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [66.4865, -123.499, 33] + [ ecalVeto ] 0 : Hit 1: [68.8945, -119.329, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 11] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 115 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5003.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3287 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-123.341, -8.34132, 20] + [ ecalVeto ] 0 : Hit 1: [-125.749, -12.512, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -2.36672e-14, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, -4.17066, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5130.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3288 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3342.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3289 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 33.3653, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 70.9012, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 20.8533, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-74.6459, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-77.0538, 16.6826, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6006.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3290 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8749.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3291 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 25] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 24] + [ ecalVeto ] 0 : Hit 2: [-69.83, 20.8533, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 20.8533, 22] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 16.6826, 21] + [ ecalVeto ] 0 : Hit 2: [-60.1983, 12.512, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 16] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -2.66454e-15, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -8.34132, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3850.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3292 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, 106.817, 25] + [ ecalVeto ] 0 : Hit 1: [-160.396, 102.646, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, 85.9634, 21] + [ ecalVeto ] 0 : Hit 1: [-124.277, 81.7928, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-112.237, 77.6221, 19] + [ ecalVeto ] 0 : Hit 1: [-109.829, 73.4515, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -102.646, 19] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -98.4754, 18] + [ ecalVeto ] 0 : Hit 2: [-11.1041, -94.3048, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -91.7545, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 56.7688, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 52.5982, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 50.0479, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2105.37; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3293 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 9 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2325.36; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3294 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 79.2426, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, 75.0719, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, 70.9012, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, 66.7306, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, 62.5599, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3871.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3295 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, 119.329, 25] + [ ecalVeto ] 0 : Hit 1: [32.7755, 123.499, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -75.0719, 24] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -70.9012, 23] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -66.7306, 22] + [ ecalVeto ] 0 : Hit 3: [-26.4873, -70.9012, 21] + [ ecalVeto ] 0 : Hit 4: [-24.0793, -66.7306, 20] + [ ecalVeto ] 0 : Hit 5: [-26.4873, -62.5599, 19] + [ ecalVeto ] 0 : Hit 6: [-24.0793, -66.7306, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [18.3279, 106.817, 18] + [ ecalVeto ] 0 : Hit 1: [15.92, 102.646, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -54.2186, 14] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -50.0479, 13] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -54.2186, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2772.16; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3296 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-205.211, 58.3892, 31] + [ ecalVeto ] 0 : Hit 1: [-202.803, 54.2186, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, 45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-152.237, 41.7066, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-137.789, 33.3653, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-125.749, 29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, 25.024, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-111.302, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, 16.6826, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 8.34132, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -66.7306, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -62.5599, 7] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3260.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3297 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -87.5839, 25] + [ ecalVeto ] 0 : Hit 1: [16.8555, -87.5839, 23] + [ ecalVeto ] 0 : Hit 2: [19.2635, -83.4132, 22] + [ ecalVeto ] 0 : Hit 3: [16.8555, -79.2426, 21] + [ ecalVeto ] 0 : Hit 4: [19.2635, -75.0719, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -75.0719, 19] + [ ecalVeto ] 0 : Hit 1: [26.4873, -70.9012, 18] + [ ecalVeto ] 0 : Hit 2: [24.0793, -66.7306, 17] + [ ecalVeto ] 0 : Hit 3: [26.4873, -62.5599, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 37.5359, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-102.606, 60.9395, 18] + [ ecalVeto ] 0 : Hit 1: [-105.013, 65.1101, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3239.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3298 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4558.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3299 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 16] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 15] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 14] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -60.9395, 7] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -58.3892, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6166.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3300 Brem photon produced 76 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2246.88; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3301 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -87.5839, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -83.4132, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -181.889, 13] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -186.059, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, 25.024, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -62.5599, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -58.3892, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -54.2186, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5839.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3302 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, -16.6826, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -8.34132, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, -54.2186, 18] + [ ecalVeto ] 0 : Hit 1: [38.5269, -50.0479, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 123 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5611.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3303 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4177.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3304 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 119.329, 9] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 123.499, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4502.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3305 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, 98.4754, 18] + [ ecalVeto ] 0 : Hit 1: [44.8152, 102.646, 17] + [ ecalVeto ] 0 : Hit 2: [47.2231, 98.4754, 16] + [ ecalVeto ] 0 : Hit 3: [47.2231, 98.4754, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3755.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3306 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 24 + [ ecalVeto ] 0 : Beginning track merging using 24 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 20 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, 102.646, 18] + [ ecalVeto ] 0 : Hit 1: [95.3817, 98.4754, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [119.461, 123.499, 18] + [ ecalVeto ] 0 : Hit 1: [117.053, 127.67, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [4.81586, 66.7306, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, 62.5599, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, 58.3892, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Hit 5: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 6: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 62.5599, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 62.5599, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, 58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [67.4221, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [68.8945, -60.9395, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 9: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 10: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 4] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 20 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9780.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3307 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3436.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3308 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 29.1946, 13] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 33.3653, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 12] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [-60.1983, 54.2186, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3940.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3309 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5084.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3310 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5379.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3311 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Hit 10: [-12.0397, -29.1946, 1] + [ ecalVeto ] 0 : Hit 11: [-9.63173, -33.3653, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, -50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -45.8773, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [-26.4873, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [-24.0793, -33.3653, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -37.5359, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8351.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3312 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -115.158, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -110.987, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -94.3048, 15] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -98.4754, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -58.3892, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-116.118, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-116.118, 4.17066, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2038.48; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3313 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7874.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3314 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -91.7545, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -87.5839, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5163.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3315 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4870.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3316 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, 12.512, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 4.17066, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5328.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3317 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6831.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3318 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3153.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3319 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 165.206, 32] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 161.035, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 18] + [ ecalVeto ] 0 : Hit 2: [-33.711, 58.3892, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4080.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3320 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4980.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3321 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [212.435, -37.5359, 20] + [ ecalVeto ] 0 : Hit 1: [210.027, -33.3653, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3412.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3322 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-60.1983, -29.1946, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -41.7066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-40.9348, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [-38.5269, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [-40.9348, -29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [-38.5269, -33.3653, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-33.711, -33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-31.3031, -37.5359, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -25.024, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6894.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3323 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, 110.987, 26] + [ ecalVeto ] 0 : Hit 1: [80.9341, 106.817, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [47.2231, 73.4515, 16] + [ ecalVeto ] 0 : Hit 1: [45.7507, 70.9012, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 2] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 121 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6648.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3324 Brem photon produced 77 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4474.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3325 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4823.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3326 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [69.83, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [67.4221, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [69.83, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [62.6062, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 4: [60.1983, 4.17066, 11] + [ ecalVeto ] 0 : Hit 5: [62.6062, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 6: [60.1983, -4.17066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [60.1983, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [62.6062, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [60.1983, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [62.6062, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [55.3824, -20.8533, 10] + [ ecalVeto ] 0 : Hit 5: [52.9745, -16.6826, 9] + [ ecalVeto ] 0 : Hit 6: [55.3824, -12.512, 8] + [ ecalVeto ] 0 : Hit 7: [52.9745, -16.6826, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [55.3824, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [52.9745, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [55.3824, -4.17066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4898.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3327 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, 85.9634, 25] + [ ecalVeto ] 0 : Hit 1: [-124.277, 81.7928, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, 54.2186, 24] + [ ecalVeto ] 0 : Hit 1: [38.5269, 50.0479, 23] + [ ecalVeto ] 0 : Hit 2: [40.9348, 45.8773, 22] + [ ecalVeto ] 0 : Hit 3: [38.5269, 41.7066, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, -81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [-102.606, -77.6221, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, 25.024, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2074.7; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3328 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, -152.694, 26] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -148.523, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -115.158, 21] + [ ecalVeto ] 0 : Hit 1: [-15.92, -110.987, 20] + [ ecalVeto ] 0 : Hit 2: [-18.3279, -106.817, 19] + [ ecalVeto ] 0 : Hit 3: [-15.92, -102.646, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -62.5599, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -58.3892, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3726.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3329 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, 110.987, 24] + [ ecalVeto ] 0 : Hit 1: [52.039, 106.817, 23] + [ ecalVeto ] 0 : Hit 2: [54.4469, 110.987, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [47.2231, 98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [44.8152, 94.3048, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, 75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 70.9012, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 13] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [-26.4873, -29.1946, 11] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, -41.7066, 7] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -20.8533, 2] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4023.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3330 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.039, -198.571, 33] + [ ecalVeto ] 0 : Hit 1: [54.4469, -194.401, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [44.8152, -186.059, 31] + [ ecalVeto ] 0 : Hit 1: [47.2231, -181.889, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-133.909, 98.4754, 1] + [ ecalVeto ] 0 : Hit 1: [-131.501, 94.3048, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7018.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3331 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, 148.523, 32] + [ ecalVeto ] 0 : Hit 1: [73.7103, 144.353, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [68.8945, 136.011, 30] + [ ecalVeto ] 0 : Hit 1: [66.4865, 131.841, 29] + [ ecalVeto ] 0 : Hit 2: [68.8945, 127.67, 28] + [ ecalVeto ] 0 : Hit 3: [66.4865, 123.499, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [61.6707, 123.499, 26] + [ ecalVeto ] 0 : Hit 1: [59.2627, 119.329, 25] + [ ecalVeto ] 0 : Hit 2: [61.6707, 115.158, 24] + [ ecalVeto ] 0 : Hit 3: [59.2627, 110.987, 23] + [ ecalVeto ] 0 : Hit 4: [61.6707, 106.817, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [47.2231, 98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [44.8152, 94.3048, 19] + [ ecalVeto ] 0 : Hit 2: [47.2231, 90.1341, 18] + [ ecalVeto ] 0 : Hit 3: [44.8152, 85.9634, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [39.9993, 77.6221, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, 75.0719, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -94.3048, 11] + [ ecalVeto ] 0 : Hit 1: [-52.039, -98.4754, 10] + [ ecalVeto ] 0 : Hit 2: [-52.039, -98.4754, 8] + [ ecalVeto ] 0 : Hit 3: [-54.4469, -102.646, 7] + [ ecalVeto ] 0 : Hit 4: [-52.039, -98.4754, 6] + [ ecalVeto ] 0 : Hit 5: [-54.4469, -102.646, 5] + [ ecalVeto ] 0 : Hit 6: [-54.4469, -102.646, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -102.646, 2] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -106.817, 1] + [ ecalVeto ] 0 : Hit 2: [-59.2627, -110.987, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5253.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3332 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -75.0719, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, -70.9012, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 56.7688, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 54.2186, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4672.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3333 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -4.17066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4165.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3334 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 37.5359, 25] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 33.3653, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 37.5359, 22] + [ ecalVeto ] 0 : Hit 2: [-77.0538, 33.3653, 21] + [ ecalVeto ] 0 : Hit 3: [-74.6459, 29.1946, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 18] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 16.6826, 17] + [ ecalVeto ] 0 : Hit 3: [-60.1983, 12.512, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [39.9993, -85.9634, 16] + [ ecalVeto ] 0 : Hit 1: [37.5914, -81.7928, 15] + [ ecalVeto ] 0 : Hit 2: [39.9993, -85.9634, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [31.3031, -79.2426, 13] + [ ecalVeto ] 0 : Hit 1: [31.3031, -79.2426, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -25.024, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 25.024, 4] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5686.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3335 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 19] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 18] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 17] + [ ecalVeto ] 0 : Hit 4: [12.0397, 45.8773, 16] + [ ecalVeto ] 0 : Hit 5: [9.63173, 41.7066, 15] + [ ecalVeto ] 0 : Hit 6: [9.63173, 41.7066, 13] + [ ecalVeto ] 0 : Hit 7: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 9: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 10: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 12: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7629.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3336 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, -12.512, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5119.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3337 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 20 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3693.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3338 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, -8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [69.83, -4.17066, 20] + [ ecalVeto ] 0 : Hit 2: [67.4221, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 3: [69.83, 4.17066, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 54.2186, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 50.0479, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 45.8773, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6358.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3339 Brem photon produced 92 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -70.9012, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -66.7306, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5071.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3340 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5699.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3341 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-234.106, 50.0479, 33] + [ ecalVeto ] 0 : Hit 1: [-231.698, 54.2186, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-212.435, 54.2186, 29] + [ ecalVeto ] 0 : Hit 1: [-210.027, 58.3892, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, -20.8533, 24] + [ ecalVeto ] 0 : Hit 1: [38.5269, -16.6826, 23] + [ ecalVeto ] 0 : Hit 2: [40.9348, -12.512, 22] + [ ecalVeto ] 0 : Hit 3: [38.5269, -8.34132, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [30.3676, -102.646, 19] + [ ecalVeto ] 0 : Hit 1: [32.7755, -98.4754, 18] + [ ecalVeto ] 0 : Hit 2: [30.3676, -94.3048, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -90.1341, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -87.5839, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3545.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3342 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, -91.7545, 29] + [ ecalVeto ] 0 : Hit 1: [-160.396, -94.3048, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, -81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, -77.6221, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -73.4515, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -65.1101, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -50.0479, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6687.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3343 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, 136.011, 33] + [ ecalVeto ] 0 : Hit 1: [32.7755, 131.841, 32] + [ ecalVeto ] 0 : Hit 2: [30.3676, 127.67, 31] + [ ecalVeto ] 0 : Hit 3: [32.7755, 123.499, 30] + [ ecalVeto ] 0 : Hit 4: [30.3676, 119.329, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 75.0719, 21] + [ ecalVeto ] 0 : Hit 1: [26.4873, 70.9012, 20] + [ ecalVeto ] 0 : Hit 2: [24.0793, 66.7306, 19] + [ ecalVeto ] 0 : Hit 3: [26.4873, 62.5599, 18] + [ ecalVeto ] 0 : Hit 4: [24.0793, 58.3892, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, 41.7066, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 5: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1615.97; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3344 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 12.512, 27] + [ ecalVeto ] 0 : Hit 1: [-108.894, 8.34132, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, 8.34132, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, 4.17066, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -2.36672e-14, 22] + [ ecalVeto ] 0 : Hit 2: [-96.8541, -4.17066, 21] + [ ecalVeto ] 0 : Hit 3: [-94.4462, -8.34132, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, -4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, -8.34132, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3545.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3345 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -50.0479, 24] + [ ecalVeto ] 0 : Hit 1: [31.3031, -45.8773, 23] + [ ecalVeto ] 0 : Hit 2: [33.711, -41.7066, 22] + [ ecalVeto ] 0 : Hit 3: [31.3031, -37.5359, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5004.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3346 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, 115.158, 24] + [ ecalVeto ] 0 : Hit 1: [30.3676, 110.987, 23] + [ ecalVeto ] 0 : Hit 2: [32.7755, 106.817, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5232.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3347 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-138.725, 165.206, 30] + [ ecalVeto ] 0 : Hit 1: [-141.132, 161.035, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -45.8773, 14] + [ ecalVeto ] 0 : Hit 3: [-33.711, -41.7066, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4049.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3348 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, -169.377, 33] + [ ecalVeto ] 0 : Hit 1: [-138.725, -165.206, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, -156.865, 31] + [ ecalVeto ] 0 : Hit 1: [-131.501, -152.694, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-119.461, -140.182, 29] + [ ecalVeto ] 0 : Hit 1: [-117.053, -136.011, 28] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-112.237, -127.67, 27] + [ ecalVeto ] 0 : Hit 1: [-109.829, -123.499, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-105.013, -115.158, 25] + [ ecalVeto ] 0 : Hit 1: [-102.606, -110.987, 24] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -106.817, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -102.646, 22] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -94.3048, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -90.1341, 20] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -73.4515, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -69.2808, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4936.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3349 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4382.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3350 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3074.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3351 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, -94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-109.829, -90.1341, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -66.7306, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7674.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3352 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1412.65; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3353 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-190.763, -41.7066, 29] + [ ecalVeto ] 0 : Hit 1: [-188.356, -45.8773, 28] + [ ecalVeto ] 0 : Hit 2: [-190.763, -50.0479, 27] + [ ecalVeto ] 0 : Hit 3: [-188.356, -54.2186, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-183.54, -54.2186, 25] + [ ecalVeto ] 0 : Hit 1: [-181.132, -58.3892, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-169.092, -62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-166.684, -66.7306, 22] + [ ecalVeto ] 0 : Hit 2: [-169.092, -70.9012, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-161.868, -66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [-159.46, -70.9012, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-154.644, -70.9012, 19] + [ ecalVeto ] 0 : Hit 1: [-152.237, -75.0719, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-147.421, -75.0719, 17] + [ ecalVeto ] 0 : Hit 1: [-145.013, -79.2426, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [15.92, -94.3048, 1] + [ ecalVeto ] 0 : Hit 1: [18.3279, -98.4754, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3645.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3354 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5153.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3355 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 91.7545, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 87.5839, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -69.2808, 8] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -65.1101, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 79.2426, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 83.4132, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6652.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3356 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, -136.011, 33] + [ ecalVeto ] 0 : Hit 1: [-138.725, -131.841, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, -131.841, 31] + [ ecalVeto ] 0 : Hit 1: [-131.501, -127.67, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-112.237, -110.987, 27] + [ ecalVeto ] 0 : Hit 1: [-109.829, -106.817, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -102.646, 25] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -98.4754, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -90.1341, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -85.9634, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -77.6221, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -73.4515, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 17] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -66.7306, 16] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 15] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 13] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5884.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3357 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3057.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3358 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [33.711, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5065.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3359 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 4: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4011.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3360 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, -110.987, 26] + [ ecalVeto ] 0 : Hit 1: [37.5914, -106.817, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [68.8945, -60.9395, 22] + [ ecalVeto ] 0 : Hit 1: [67.4221, -58.3892, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-52.039, -73.4515, 20] + [ ecalVeto ] 0 : Hit 2: [-54.4469, -69.2808, 19] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -66.7306, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, -58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, -54.2186, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, -50.0479, 14] + [ ecalVeto ] 0 : Hit 4: [2.40793, -45.8773, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3993.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3361 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 77.6221, 28] + [ ecalVeto ] 0 : Hit 1: [-61.6707, 73.4515, 27] + [ ecalVeto ] 0 : Hit 2: [-59.2627, 69.2808, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5521.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3362 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -50.0479, 33] + [ ecalVeto ] 0 : Hit 1: [12.0397, -45.8773, 32] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 31] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 22] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 21] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 20] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 20 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 783.999; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3363 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, 106.817, 19] + [ ecalVeto ] 0 : Hit 1: [11.1041, 102.646, 18] + [ ecalVeto ] 0 : Hit 2: [8.69618, 98.4754, 17] + [ ecalVeto ] 0 : Hit 3: [11.1041, 94.3048, 16] + [ ecalVeto ] 0 : Hit 4: [9.63173, 91.7545, 15] + [ ecalVeto ] 0 : Hit 5: [12.0397, 87.5839, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -33.3653, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 66.7306, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 62.5599, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 58.3892, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, 54.2186, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4320.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3364 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 62.5599, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4899.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3365 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 14 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 28] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 27] + [ ecalVeto ] 0 : Hit 2: [12.0397, -45.8773, 26] + [ ecalVeto ] 0 : Hit 3: [9.63173, -50.0479, 25] + [ ecalVeto ] 0 : Hit 4: [12.0397, -54.2186, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [19.2635, -58.3892, 22] + [ ecalVeto ] 0 : Hit 2: [16.8555, -62.5599, 21] + [ ecalVeto ] 0 : Hit 3: [19.2635, -66.7306, 20] + [ ecalVeto ] 0 : Hit 4: [16.8555, -62.5599, 19] + [ ecalVeto ] 0 : Hit 5: [19.2635, -66.7306, 18] + [ ecalVeto ] 0 : Hit 6: [16.8555, -62.5599, 17] + [ ecalVeto ] 0 : Hit 7: [19.2635, -66.7306, 16] + [ ecalVeto ] 0 : Hit 8: [16.8555, -70.9012, 15] + [ ecalVeto ] 0 : Hit 9: [19.2635, -66.7306, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [60.1983, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [61.6707, -65.1101, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -45.8773, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 8.34132, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, -20.8533, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 8.34132, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [31.3031, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 5] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -4.17066, 4] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [40.9348, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [38.5269, -8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [40.9348, -12.512, 2] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 14 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2973.46; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3366 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -83.4132, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -79.2426, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -75.0719, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -70.9012, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5209.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3367 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 24] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 23] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 22] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 21] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 20] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 19] + [ ecalVeto ] 0 : Hit 6: [12.0397, 29.1946, 18] + [ ecalVeto ] 0 : Hit 7: [9.63173, 25.024, 17] + [ ecalVeto ] 0 : Hit 8: [12.0397, 20.8533, 16] + [ ecalVeto ] 0 : Hit 9: [9.63173, 16.6826, 15] + [ ecalVeto ] 0 : Hit 10: [12.0397, 12.512, 14] + [ ecalVeto ] 0 : Hit 11: [9.63173, 8.34132, 13] + [ ecalVeto ] 0 : Hit 12: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 13: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4883.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3368 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4674.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3369 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 136.011, 16] + [ ecalVeto ] 0 : Hit 1: [66.4865, 131.841, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2815.29; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3370 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 7: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 8: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 9: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4541; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3371 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4313.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3372 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-111.302, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-108.894, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5262.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3373 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [55.3824, 37.5359, 16] + [ ecalVeto ] 0 : Hit 2: [52.9745, 33.3653, 15] + [ ecalVeto ] 0 : Hit 3: [55.3824, 29.1946, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-1.47238, -110.987, 12] + [ ecalVeto ] 0 : Hit 1: [-3.88031, -106.817, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4632.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3374 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -123.499, 20] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -119.329, 19] + [ ecalVeto ] 0 : Hit 2: [-23.1438, -115.158, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [74.6459, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [77.0538, -25.024, 12] + [ ecalVeto ] 0 : Hit 2: [74.6459, -29.1946, 11] + [ ecalVeto ] 0 : Hit 3: [77.0538, -25.024, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 116 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5299.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3375 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [66.4865, -65.1101, 5] + [ ecalVeto ] 0 : Hit 1: [66.4865, -65.1101, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7053.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3376 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [89.6303, -41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [89.6303, -41.7066, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -75.0719, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -70.9012, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -75.0719, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6069.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3377 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4663.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3378 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -165.206, 22] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -161.035, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -144.353, 21] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -148.523, 20] + [ ecalVeto ] 0 : Hit 2: [-39.9993, -144.353, 19] + [ ecalVeto ] 0 : Hit 3: [-37.5914, -140.182, 18] + [ ecalVeto ] 0 : Hit 4: [-39.9993, -144.353, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4697.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3379 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [37.5914, 90.1341, 21] + [ ecalVeto ] 0 : Hit 1: [39.9993, 94.3048, 20] + [ ecalVeto ] 0 : Hit 2: [37.5914, 90.1341, 19] + [ ecalVeto ] 0 : Hit 3: [39.9993, 85.9634, 18] + [ ecalVeto ] 0 : Hit 4: [37.5914, 81.7928, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4995.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3380 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 22] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 16] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 15] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 25.024, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3116.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3381 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [96.8541, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [96.8541, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7508.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3382 Brem photon produced 105 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2495.53; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3383 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 119.329, 4] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 119.329, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3212.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3384 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 20.8533, 2] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4711.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3385 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3204.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3386 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 25 + [ ecalVeto ] 0 : Beginning track merging using 25 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 21 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, 90.1341, 24] + [ ecalVeto ] 0 : Hit 1: [16.8555, 87.5839, 23] + [ ecalVeto ] 0 : Hit 2: [19.2635, 83.4132, 22] + [ ecalVeto ] 0 : Hit 3: [16.8555, 79.2426, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [12.0397, 62.5599, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 4.17066, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [62.6062, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [60.1983, 20.8533, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Hit 6: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-16.8555, 12.512, 4] + [ ecalVeto ] 0 : Hit 8: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Hit 9: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [55.3824, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [52.9745, 16.6826, 9] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [31.3031, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [33.711, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [26.4873, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [24.0793, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [26.4873, -4.17066, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [31.3031, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [33.711, 8.34132, 8] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [55.3824, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [52.9745, 8.34132, 7] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [31.3031, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [38.5269, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [40.9348, 12.512, 6] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 21 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10409.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3387 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3208.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3388 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [23.1438, 98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [25.5517, 94.3048, 20] + [ ecalVeto ] 0 : Hit 2: [23.1438, 90.1341, 19] + [ ecalVeto ] 0 : Hit 3: [25.5517, 85.9634, 18] + [ ecalVeto ] 0 : Hit 4: [24.0793, 83.4132, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, -66.7306, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -62.5599, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 62.5599, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, 58.3892, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, 54.2186, 11] + [ ecalVeto ] 0 : Hit 4: [19.2635, 50.0479, 10] + [ ecalVeto ] 0 : Hit 5: [16.8555, 45.8773, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4620.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3389 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 4.17066, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, 8.34132, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, 4.17066, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3625.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3390 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 120 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9220.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3391 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 5] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5190.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3392 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7447.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3393 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, -65.1101, 6] + [ ecalVeto ] 0 : Hit 1: [102.606, -60.9395, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [96.8541, -54.2186, 4] + [ ecalVeto ] 0 : Hit 1: [94.4462, -50.0479, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5371.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3394 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -54.2186, 26] + [ ecalVeto ] 0 : Hit 1: [24.0793, -50.0479, 25] + [ ecalVeto ] 0 : Hit 2: [26.4873, -45.8773, 24] + [ ecalVeto ] 0 : Hit 3: [24.0793, -41.7066, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 20] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 19] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 18] + [ ecalVeto ] 0 : Hit 4: [16.8555, -20.8533, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 79.2426, 17] + [ ecalVeto ] 0 : Hit 1: [19.2635, 75.0719, 16] + [ ecalVeto ] 0 : Hit 2: [16.8555, 70.9012, 15] + [ ecalVeto ] 0 : Hit 3: [16.8555, 70.9012, 13] + [ ecalVeto ] 0 : Hit 4: [12.0397, 70.9012, 14] + [ ecalVeto ] 0 : Hit 5: [12.0397, 70.9012, 12] + [ ecalVeto ] 0 : Hit 6: [9.63173, 66.7306, 11] + [ ecalVeto ] 0 : Hit 7: [12.0397, 62.5599, 10] + [ ecalVeto ] 0 : Hit 8: [9.63173, 58.3892, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 9: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 10: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 11: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 58.3892, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3569.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3395 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6626.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3396 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3307.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3397 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [19.2635, 58.3892, 22] + [ ecalVeto ] 0 : Hit 2: [16.8555, 54.2186, 21] + [ ecalVeto ] 0 : Hit 3: [19.2635, 50.0479, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1508.83; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3398 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1841.73; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3399 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 50.0479, 18] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 45.8773, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -81.7928, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [76.1183, -65.1101, 2] + [ ecalVeto ] 0 : Hit 1: [73.7103, -69.2808, 1] + [ ecalVeto ] 0 : Hit 2: [76.1183, -65.1101, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4951.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3400 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-159.46, -45.8773, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -29.1946, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8459.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3401 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -58.3892, 22] + [ ecalVeto ] 0 : Hit 1: [45.7507, -54.2186, 21] + [ ecalVeto ] 0 : Hit 2: [48.1586, -58.3892, 20] + [ ecalVeto ] 0 : Hit 3: [48.1586, -58.3892, 18] + [ ecalVeto ] 0 : Hit 4: [48.1586, -50.0479, 20] + [ ecalVeto ] 0 : Hit 5: [45.7507, -45.8773, 19] + [ ecalVeto ] 0 : Hit 6: [48.1586, -41.7066, 18] + [ ecalVeto ] 0 : Hit 7: [45.7507, -45.8773, 17] + [ ecalVeto ] 0 : Hit 8: [48.1586, -41.7066, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, -37.5359, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, -33.3653, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 13] + [ ecalVeto ] 0 : Hit 4: [33.711, -25.024, 12] + [ ecalVeto ] 0 : Hit 5: [31.3031, -20.8533, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4350.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3402 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3402 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 79.2426, 26] + [ ecalVeto ] 0 : Hit 1: [24.0793, 75.0719, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [30.3676, 102.646, 23] + [ ecalVeto ] 0 : Hit 1: [32.7755, 106.817, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 70.9012, 23] + [ ecalVeto ] 0 : Hit 1: [19.2635, 66.7306, 22] + [ ecalVeto ] 0 : Hit 2: [16.8555, 62.5599, 21] + [ ecalVeto ] 0 : Hit 3: [19.2635, 66.7306, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 62.5599, 20] + [ ecalVeto ] 0 : Hit 1: [9.63173, 58.3892, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 18] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 17] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 16] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 15] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 14] + [ ecalVeto ] 0 : Hit 6: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 8: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2054.94; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3403 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, 62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-166.684, 58.3892, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-116.118, 37.5359, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3620.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3404 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4198.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3405 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 20] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 18] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 17] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 16] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3080.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3406 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 17] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4344.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3407 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 20.8533, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 3] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2671.11; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3408 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-173.908, 70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [-176.316, 66.7306, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -65.1101, 11] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -60.9395, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4958.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3409 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 22] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -37.5359, 21] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -33.3653, 20] + [ ecalVeto ] 0 : Hit 4: [-26.4873, -29.1946, 19] + [ ecalVeto ] 0 : Hit 5: [-24.0793, -33.3653, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 4.17066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 2] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Hit 7: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4314.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3410 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [38.5269, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [40.9348, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [38.5269, 41.7066, 5] + [ ecalVeto ] 0 : Hit 4: [40.9348, 37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [38.5269, 33.3653, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3504.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3411 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 58.3892, 18] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 16] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -41.7066, 15] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -37.5359, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-69.83, -29.1946, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -16.6826, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4065.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3412 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-234.106, 50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-231.698, 45.8773, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4925.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3413 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, -115.158, 16] + [ ecalVeto ] 0 : Hit 1: [73.7103, -110.987, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6271.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3414 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3137.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3415 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2933.08; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3416 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, -140.182, 32] + [ ecalVeto ] 0 : Hit 1: [73.7103, -136.011, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [76.1183, -90.1341, 30] + [ ecalVeto ] 0 : Hit 1: [76.1183, -90.1341, 28] + [ ecalVeto ] 0 : Hit 2: [73.7103, -94.3048, 27] + [ ecalVeto ] 0 : Hit 3: [76.1183, -90.1341, 26] + [ ecalVeto ] 0 : Hit 4: [73.7103, -94.3048, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [68.8945, -127.67, 30] + [ ecalVeto ] 0 : Hit 1: [66.4865, -123.499, 29] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [88.1579, -102.646, 29] + [ ecalVeto ] 0 : Hit 1: [88.1579, -102.646, 27] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [73.7103, -102.646, 29] + [ ecalVeto ] 0 : Hit 1: [76.1183, -98.4754, 28] + [ ecalVeto ] 0 : Hit 2: [73.7103, -102.646, 27] + [ ecalVeto ] 0 : Hit 3: [76.1183, -98.4754, 26] + [ ecalVeto ] 0 : Hit 4: [68.8945, -94.3048, 28] + [ ecalVeto ] 0 : Hit 5: [66.4865, -90.1341, 27] + [ ecalVeto ] 0 : Hit 6: [68.8945, -85.9634, 26] + [ ecalVeto ] 0 : Hit 7: [66.4865, -81.7928, 25] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [66.4865, -106.817, 29] + [ ecalVeto ] 0 : Hit 1: [68.8945, -102.646, 28] + [ ecalVeto ] 0 : Hit 2: [66.4865, -98.4754, 27] + [ ecalVeto ] 0 : Hit 3: [68.8945, -94.3048, 26] + [ ecalVeto ] 0 : Hit 4: [66.4865, -90.1341, 25] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [83.3421, -77.6221, 28] + [ ecalVeto ] 0 : Hit 1: [83.3421, -77.6221, 26] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 90.1341, 13] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 94.3048, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2352.8; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3417 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -85.9634, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3452.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3418 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, -110.987, 20] + [ ecalVeto ] 0 : Hit 1: [52.039, -106.817, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6205.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3419 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6230.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3420 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -94.3048, 22] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -90.1341, 21] + [ ecalVeto ] 0 : Hit 2: [-30.3676, -85.9634, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6522.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3421 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -79.2426, 26] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -75.0719, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -66.7306, 24] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -62.5599, 23] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -58.3892, 22] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -54.2186, 21] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -58.3892, 20] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -54.2186, 19] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -50.0479, 18] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -45.8773, 17] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -41.7066, 16] + [ ecalVeto ] 0 : Hit 9: [-12.0397, -37.5359, 15] + [ ecalVeto ] 0 : Hit 10: [-12.0397, -37.5359, 13] + [ ecalVeto ] 0 : Hit 11: [-9.63173, -33.3653, 12] + [ ecalVeto ] 0 : Hit 12: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 13: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 14: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 15: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 16: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 17: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 18: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 19: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 16] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 15] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -45.8773, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7031.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3422 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, -12.512, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, -8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, -4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [33.711, -2.66454e-15, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4133.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3423 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -144.353, 21] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -140.182, 20] + [ ecalVeto ] 0 : Hit 2: [-25.5517, -144.353, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -131.841, 19] + [ ecalVeto ] 0 : Hit 1: [-15.92, -127.67, 18] + [ ecalVeto ] 0 : Hit 2: [-18.3279, -123.499, 17] + [ ecalVeto ] 0 : Hit 3: [-15.92, -119.329, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -79.2426, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -75.0719, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -70.9012, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -66.7306, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3352.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3424 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3671.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3425 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -45.8773, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -50.0479, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3687.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3426 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4951.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3427 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -37.5359, 24] + [ ecalVeto ] 0 : Hit 1: [-33.711, -33.3653, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -25.024, 22] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -20.8533, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -20.8533, 20] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -16.6826, 19] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -12.512, 18] + [ ecalVeto ] 0 : Hit 3: [-48.1586, -8.34132, 17] + [ ecalVeto ] 0 : Hit 4: [-45.7507, -12.512, 16] + [ ecalVeto ] 0 : Hit 5: [-48.1586, -8.34132, 15] + [ ecalVeto ] 0 : Hit 6: [-45.7507, -4.17066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 58.3892, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6824.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3428 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Hit 4: [19.2635, -16.6826, 10] + [ ecalVeto ] 0 : Hit 5: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 6: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 7: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Hit 7: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3287.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3429 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 1] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4513.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3430 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, -85.9634, 21] + [ ecalVeto ] 0 : Hit 1: [32.7755, -81.7928, 20] + [ ecalVeto ] 0 : Hit 2: [31.3031, -79.2426, 19] + [ ecalVeto ] 0 : Hit 3: [33.711, -75.0719, 18] + [ ecalVeto ] 0 : Hit 4: [31.3031, -70.9012, 17] + [ ecalVeto ] 0 : Hit 5: [33.711, -66.7306, 16] + [ ecalVeto ] 0 : Hit 6: [31.3031, -62.5599, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6695.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3431 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4097.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3432 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 37.5359, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5547.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3433 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 4.17066, 25] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -2.66454e-15, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -2.66454e-15, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 3: [-33.711, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 4: [-33.711, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 5: [-31.3031, 4.17066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [26.4873, 29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 70.9012, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 75.0719, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5652.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3434 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [126.685, -136.011, 24] + [ ecalVeto ] 0 : Hit 1: [124.277, -131.841, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [119.461, -123.499, 22] + [ ecalVeto ] 0 : Hit 1: [117.053, -119.329, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 22] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 21] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 20] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 19] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 18] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [112.237, -110.987, 20] + [ ecalVeto ] 0 : Hit 1: [109.829, -106.817, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [105.013, -98.4754, 18] + [ ecalVeto ] 0 : Hit 1: [102.606, -94.3048, 17] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 7: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5179.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3435 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 13 + [ ecalVeto ] 0 : Beginning track merging using 13 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, -20.8533, 31] + [ ecalVeto ] 0 : Hit 1: [-181.132, -25.024, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-173.908, -20.8533, 28] + [ ecalVeto ] 0 : Hit 1: [-173.908, -20.8533, 26] + [ ecalVeto ] 0 : Hit 2: [-169.092, -20.8533, 27] + [ ecalVeto ] 0 : Hit 3: [-169.092, -20.8533, 25] + [ ecalVeto ] 0 : Hit 4: [-166.684, -25.024, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-161.868, -25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-159.46, -20.8533, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-154.644, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-152.237, -25.024, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-147.421, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-145.013, -20.8533, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-161.868, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-159.46, -20.8533, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-154.644, -79.2426, 17] + [ ecalVeto ] 0 : Hit 1: [-152.237, -75.0719, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-140.197, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-137.789, -25.024, 16] + [ ecalVeto ] 0 : Hit 2: [-140.197, -20.8533, 15] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-154.644, -54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-152.237, -50.0479, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-118.525, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 12] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [24.0793, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, 41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, 45.8773, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4356.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3436 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [48.1586, 16.6826, 16] + [ ecalVeto ] 0 : Hit 2: [45.7507, 12.512, 15] + [ ecalVeto ] 0 : Hit 3: [48.1586, 8.34132, 14] + [ ecalVeto ] 0 : Hit 4: [45.7507, 4.17066, 13] + [ ecalVeto ] 0 : Hit 5: [48.1586, 8.34132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, 12.512, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, 8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [40.9348, 4.17066, 14] + [ ecalVeto ] 0 : Hit 3: [38.5269, 8.34132, 13] + [ ecalVeto ] 0 : Hit 4: [40.9348, 4.17066, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [31.3031, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [33.711, 8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [33.711, 8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, 12.512, 11] + [ ecalVeto ] 0 : Hit 4: [33.711, 8.34132, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5535.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3437 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4110.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3438 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4956.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3439 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4233.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3440 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 98.4754, 12] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 98.4754, 10] + [ ecalVeto ] 0 : Hit 2: [-37.5914, 98.4754, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5598.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3441 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -25.024, 25] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -29.1946, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -33.3653, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -29.1946, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3840.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3442 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4274.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3443 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [26.4873, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2970.86; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3444 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, -54.2186, 26] + [ ecalVeto ] 0 : Hit 1: [123.341, -50.0479, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, -20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [67.4221, -16.6826, 17] + [ ecalVeto ] 0 : Hit 2: [67.4221, -16.6826, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [84.2776, -20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [81.8697, -16.6826, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 4: [4.81586, 50.0479, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5871.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3445 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 87.5839, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, 83.4132, 14] + [ ecalVeto ] 0 : Hit 2: [4.81586, 83.4132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 134 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11605.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3446 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3821.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3447 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -58.3892, 14] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -54.2186, 13] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -50.0479, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -29.1946, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5016.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3448 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2595.12; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3449 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 62.5599, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7068.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3450 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8761.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3451 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [-26.4873, 37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [-24.0793, 33.3653, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, 41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6354.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3452 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3452 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -8.34132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4632.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3453 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-81.8697, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-82.4065, -4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6100.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3454 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-123.341, -25.024, 26] + [ ecalVeto ] 0 : Hit 1: [-125.749, -29.1946, 25] + [ ecalVeto ] 0 : Hit 2: [-123.341, -33.3653, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, -29.1946, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [133.909, 140.182, 22] + [ ecalVeto ] 0 : Hit 1: [131.501, 136.011, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, -25.024, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -12.512, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3640.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3455 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 77.6221, 20] + [ ecalVeto ] 0 : Hit 1: [66.4865, 73.4515, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, 12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4925.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3456 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, 85.9634, 22] + [ ecalVeto ] 0 : Hit 1: [52.039, 81.7928, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7450.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3457 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [155.58, 110.987, 32] + [ ecalVeto ] 0 : Hit 1: [153.172, 106.817, 31] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5230.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3458 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, -50.0479, 5] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6359.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3459 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [205.211, -66.7306, 32] + [ ecalVeto ] 0 : Hit 1: [202.803, -62.5599, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -66.7306, 18] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -62.5599, 17] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -58.3892, 16] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -54.2186, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7166.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3460 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4202.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3461 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -60.9395, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -56.7688, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [118.525, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [116.118, -12.512, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7516.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3462 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 62.5599, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4178.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3463 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -75.0719, 32] + [ ecalVeto ] 0 : Hit 1: [19.2635, -75.0719, 30] + [ ecalVeto ] 0 : Hit 2: [19.2635, -75.0719, 28] + [ ecalVeto ] 0 : Hit 3: [16.8555, -70.9012, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [52.039, 81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [52.039, 81.7928, 17] + [ ecalVeto ] 0 : Hit 2: [52.039, 81.7928, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7603; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3464 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, -12.512, 2] + [ ecalVeto ] 0 : Hit 1: [69.83, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3126.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3465 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -91.7545, 26] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -87.5839, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 165.206, 25] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 169.377, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 140.182, 25] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 144.353, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -75.0719, 24] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -70.9012, 23] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -66.7306, 22] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -62.5599, 21] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -58.3892, 20] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -54.2186, 19] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -50.0479, 18] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -45.8773, 17] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -41.7066, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 136.011, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 140.182, 22] + [ ecalVeto ] 0 : Hit 2: [-83.3421, 144.353, 21] + [ ecalVeto ] 0 : Hit 3: [-80.9341, 140.182, 20] + [ ecalVeto ] 0 : Hit 4: [-76.1183, 140.182, 21] + [ ecalVeto ] 0 : Hit 5: [-73.7103, 136.011, 20] + [ ecalVeto ] 0 : Hit 6: [-76.1183, 140.182, 19] + [ ecalVeto ] 0 : Hit 7: [-73.7103, 136.011, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-102.606, 144.353, 22] + [ ecalVeto ] 0 : Hit 1: [-105.013, 140.182, 21] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 12] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 11] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 10] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2723.91; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3466 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, 102.646, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, 98.4754, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, 94.3048, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, 90.1341, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4928.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3467 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5217.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3468 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [33.711, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [33.711, 33.3653, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [31.3031, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [33.711, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [31.3031, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6328.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3469 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [44.8152, 127.67, 3] + [ ecalVeto ] 0 : Hit 1: [47.2231, 123.499, 2] + [ ecalVeto ] 0 : Hit 2: [44.8152, 119.329, 1] + [ ecalVeto ] 0 : Hit 3: [47.2231, 115.158, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3156.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3470 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-123.341, -66.7306, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4788.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3471 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3471 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6932.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3472 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [55.3824, -4.17066, 16] + [ ecalVeto ] 0 : Hit 2: [52.9745, -8.34132, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3480.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3473 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4437.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3474 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6788.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3475 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [112.237, 94.3048, 20] + [ ecalVeto ] 0 : Hit 1: [109.829, 90.1341, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5361.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3476 Brem photon produced 64 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, -77.6221, 24] + [ ecalVeto ] 0 : Hit 1: [66.4865, -73.4515, 23] + [ ecalVeto ] 0 : Hit 2: [68.8945, -69.2808, 22] + [ ecalVeto ] 0 : Hit 3: [66.4865, -65.1101, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [68.8945, 169.377, 22] + [ ecalVeto ] 0 : Hit 1: [66.4865, 165.206, 21] + [ ecalVeto ] 0 : Hit 2: [68.8945, 161.035, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [61.6707, -65.1101, 20] + [ ecalVeto ] 0 : Hit 1: [60.1983, -62.5599, 19] + [ ecalVeto ] 0 : Hit 2: [62.6062, -58.3892, 18] + [ ecalVeto ] 0 : Hit 3: [60.1983, -54.2186, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [59.2627, 161.035, 19] + [ ecalVeto ] 0 : Hit 1: [61.6707, 156.865, 18] + [ ecalVeto ] 0 : Hit 2: [59.2627, 152.694, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [54.4469, 152.694, 16] + [ ecalVeto ] 0 : Hit 1: [52.039, 148.523, 15] + [ ecalVeto ] 0 : Hit 2: [54.4469, 144.353, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4582.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3477 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 45.8773, 24] + [ ecalVeto ] 0 : Hit 1: [38.5269, 41.7066, 23] + [ ecalVeto ] 0 : Hit 2: [40.9348, 37.5359, 22] + [ ecalVeto ] 0 : Hit 3: [38.5269, 33.3653, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 33.3653, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, 29.1946, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -85.9634, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -81.7928, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -79.2426, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -58.3892, 9] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 2] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 1] + [ ecalVeto ] 0 : Hit 4: [19.2635, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4384.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3478 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 1: [52.9745, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 2: [55.3824, -4.17066, 14] + [ ecalVeto ] 0 : Hit 3: [52.9745, -2.66454e-15, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, -37.5359, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 2: [40.9348, 4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [38.5269, -2.66454e-15, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-69.83, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [-67.4221, -25.024, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5233.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3479 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 126 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6515.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3480 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [73.7103, 136.011, 31] + [ ecalVeto ] 0 : Hit 1: [76.1183, 131.841, 30] + [ ecalVeto ] 0 : Hit 2: [73.7103, 127.67, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [68.8945, 119.329, 28] + [ ecalVeto ] 0 : Hit 1: [66.4865, 115.158, 27] + [ ecalVeto ] 0 : Hit 2: [68.8945, 110.987, 26] + [ ecalVeto ] 0 : Hit 3: [66.4865, 106.817, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -181.889, 1] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -177.718, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4212.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3481 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, -110.987, 16] + [ ecalVeto ] 0 : Hit 1: [39.9993, -110.987, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 9: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 10: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 11: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Hit 12: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-66.4865, -140.182, 12] + [ ecalVeto ] 0 : Hit 1: [-68.8945, -136.011, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-52.039, -131.841, 10] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -127.67, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5068.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3482 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [45.7507, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6286.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3483 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 169.377, 28] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 165.206, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 115.158, 23] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 119.329, 22] + [ ecalVeto ] 0 : Hit 2: [-32.7755, 123.499, 21] + [ ecalVeto ] 0 : Hit 3: [-30.3676, 119.329, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 123.499, 20] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 119.329, 19] + [ ecalVeto ] 0 : Hit 2: [-23.1438, 115.158, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 106.817, 18] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 102.646, 17] + [ ecalVeto ] 0 : Hit 2: [-23.1438, 98.4754, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2591.99; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3484 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 8: [4.81586, -25.024, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4534.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3485 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, -25.024, 20] + [ ecalVeto ] 0 : Hit 2: [-125.749, -20.8533, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-123.341, -8.34132, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, -8.34132, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-81.8697, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [-82.4065, -20.8533, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5923.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3486 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [55.3824, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [52.9745, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [55.3824, -4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4999.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3487 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4891.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3488 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -136.011, 21] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -140.182, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3128.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3489 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -62.5599, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, -58.3892, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-116.118, -54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [-118.525, -58.3892, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, -45.8773, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 8.34132, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [-55.3824, 20.8533, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4242.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3490 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 12] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 37.5359, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 58.3892, 4] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 54.2186, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5002.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3491 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3491 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1586.65; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3492 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3664.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3493 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 32] + [ ecalVeto ] 0 : Hit 1: [26.4873, 62.5599, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 66.7306, 27] + [ ecalVeto ] 0 : Hit 1: [26.4873, 70.9012, 26] + [ ecalVeto ] 0 : Hit 2: [24.0793, 75.0719, 25] + [ ecalVeto ] 0 : Hit 3: [26.4873, 70.9012, 24] + [ ecalVeto ] 0 : Hit 4: [24.0793, 75.0719, 23] + [ ecalVeto ] 0 : Hit 5: [26.4873, 70.9012, 22] + [ ecalVeto ] 0 : Hit 6: [24.0793, 75.0719, 21] + [ ecalVeto ] 0 : Hit 7: [26.4873, 79.2426, 20] + [ ecalVeto ] 0 : Hit 8: [24.0793, 75.0719, 19] + [ ecalVeto ] 0 : Hit 9: [26.4873, 70.9012, 18] + [ ecalVeto ] 0 : Hit 10: [26.4873, 70.9012, 16] + [ ecalVeto ] 0 : Hit 11: [24.0793, 66.7306, 15] + [ ecalVeto ] 0 : Hit 12: [26.4873, 62.5599, 14] + [ ecalVeto ] 0 : Hit 13: [24.0793, 66.7306, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 54.2186, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, 50.0479, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, 45.8773, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [176.316, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [173.908, -12.512, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-248.554, 16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-246.146, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5109.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3494 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 18] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 17] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 16] + [ ecalVeto ] 0 : Hit 4: [16.8555, -20.8533, 15] + [ ecalVeto ] 0 : Hit 5: [19.2635, -16.6826, 14] + [ ecalVeto ] 0 : Hit 6: [16.8555, -12.512, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9354.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3495 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3059.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3496 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9177.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3497 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, 106.817, 28] + [ ecalVeto ] 0 : Hit 1: [44.8152, 102.646, 27] + [ ecalVeto ] 0 : Hit 2: [47.2231, 98.4754, 26] + [ ecalVeto ] 0 : Hit 3: [44.8152, 94.3048, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [39.9993, 85.9634, 24] + [ ecalVeto ] 0 : Hit 1: [37.5914, 81.7928, 23] + [ ecalVeto ] 0 : Hit 2: [39.9993, 77.6221, 22] + [ ecalVeto ] 0 : Hit 3: [38.5269, 75.0719, 21] + [ ecalVeto ] 0 : Hit 4: [40.9348, 70.9012, 20] + [ ecalVeto ] 0 : Hit 5: [38.5269, 66.7306, 19] + [ ecalVeto ] 0 : Hit 6: [40.9348, 62.5599, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 58.3892, 18] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 17] + [ ecalVeto ] 0 : Hit 2: [33.711, 50.0479, 16] + [ ecalVeto ] 0 : Hit 3: [31.3031, 45.8773, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5680.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3498 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 156.865, 24] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 152.694, 23] + [ ecalVeto ] 0 : Finding linreg tracks from 115 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4330.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3499 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, 148.523, 21] + [ ecalVeto ] 0 : Hit 1: [11.1041, 152.694, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5424.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3500 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 4: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -33.3653, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4758.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3501 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 25.024, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, 25.024, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, 20.8533, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3145.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3502 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5761.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3503 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 21] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -25.024, 20] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -20.8533, 19] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 18] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -20.8533, 17] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -25.024, 16] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -20.8533, 15] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -25.024, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1962.16; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3504 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, -66.7306, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, -33.3653, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3539.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3505 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, -110.987, 25] + [ ecalVeto ] 0 : Hit 1: [30.3676, -110.987, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, -102.646, 24] + [ ecalVeto ] 0 : Hit 1: [23.1438, -98.4754, 23] + [ ecalVeto ] 0 : Hit 2: [25.5517, -102.646, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [18.3279, -98.4754, 22] + [ ecalVeto ] 0 : Hit 1: [15.92, -94.3048, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [11.1041, -94.3048, 20] + [ ecalVeto ] 0 : Hit 1: [9.63173, -91.7545, 19] + [ ecalVeto ] 0 : Hit 2: [12.0397, -87.5839, 18] + [ ecalVeto ] 0 : Hit 3: [9.63173, -83.4132, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -83.4132, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -79.2426, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -75.0719, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -70.9012, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -58.3892, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3917.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3506 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 24 + [ ecalVeto ] 0 : Beginning track merging using 24 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 21 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 90.1341, 27] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 85.9634, 26] + [ ecalVeto ] 0 : Hit 2: [-32.7755, 81.7928, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 58.3892, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 16.6826, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [40.9348, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [38.5269, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [40.9348, -12.512, 4] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-33.711, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -12.512, 4] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 4] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 0] + [ ecalVeto ] 0 : Hit 5: [12.0397, -45.8773, 2] + [ ecalVeto ] 0 : Hit 6: [12.0397, -45.8773, 0] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [31.3031, -20.8533, 3] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 2] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 2] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -20.8533, 2] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 3] + [ ecalVeto ] 0 : Hit 1: [26.4873, -37.5359, 2] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [32.7755, -115.158, 2] + [ ecalVeto ] 0 : Hit 1: [30.3676, -119.329, 1] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 2] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 1] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 1] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 21 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4287.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3507 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -69.2808, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [48.1586, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [48.1586, -25.024, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5987.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3508 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 50.0479, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 132 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9736.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3509 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, 115.158, 26] + [ ecalVeto ] 0 : Hit 1: [73.7103, 110.987, 25] + [ ecalVeto ] 0 : Hit 2: [76.1183, 106.817, 24] + [ ecalVeto ] 0 : Hit 3: [73.7103, 102.646, 23] + [ ecalVeto ] 0 : Hit 4: [76.1183, 98.4754, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4672.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3510 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3914.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3511 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4874.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3512 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 14 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [132.973, 33.3653, 30] + [ ecalVeto ] 0 : Hit 1: [130.565, 29.1946, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [125.749, 29.1946, 28] + [ ecalVeto ] 0 : Hit 1: [123.341, 25.024, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [111.302, 20.8533, 26] + [ ecalVeto ] 0 : Hit 1: [108.894, 16.6826, 25] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [94.4462, 16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [96.8541, 12.512, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [77.0538, 8.34132, 18] + [ ecalVeto ] 0 : Hit 1: [74.6459, 4.17066, 17] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [60.1983, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [62.6062, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [52.9745, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [55.3824, -4.17066, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -94.3048, 11] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -90.1341, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -98.4754, 11] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -94.3048, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [2.40793, -95.9252, 11] + [ ecalVeto ] 0 : Hit 1: [3.88031, -98.4754, 10] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [40.9348, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [38.5269, -8.34132, 9] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [33.711, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, -12.512, 7] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 14 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1410.78; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3513 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, 98.4754, 23] + [ ecalVeto ] 0 : Hit 1: [-145.948, 94.3048, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-138.725, 90.1341, 22] + [ ecalVeto ] 0 : Hit 1: [-138.725, 90.1341, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-145.013, 54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [-147.421, 58.3892, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-141.132, 127.67, 19] + [ ecalVeto ] 0 : Hit 1: [-138.725, 131.841, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [66.4865, 190.23, 19] + [ ecalVeto ] 0 : Hit 1: [68.8945, 194.401, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-162.804, 106.817, 13] + [ ecalVeto ] 0 : Hit 1: [-160.396, 110.987, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4038.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3514 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, -136.011, 20] + [ ecalVeto ] 0 : Hit 1: [23.1438, -131.841, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, -119.329, 18] + [ ecalVeto ] 0 : Hit 1: [23.1438, -115.158, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [18.3279, -106.817, 16] + [ ecalVeto ] 0 : Hit 1: [15.92, -102.646, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 6: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 3] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4849.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3515 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5530.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3516 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4036.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3517 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5482.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3518 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, -140.182, 19] + [ ecalVeto ] 0 : Hit 1: [-160.396, -144.353, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-141.132, -136.011, 17] + [ ecalVeto ] 0 : Hit 1: [-138.725, -131.841, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-119.461, -123.499, 15] + [ ecalVeto ] 0 : Hit 1: [-117.053, -119.329, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3518.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3519 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -173.547, 26] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -169.377, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -79.2426, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -75.0719, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -70.9012, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -66.7306, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9218.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3520 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 16] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 15] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 14] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5060.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3521 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -70.9012, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4281.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3522 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3319.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3523 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -79.2426, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -75.0719, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -79.2426, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4686.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3524 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -16.6826, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4760.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3525 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 25] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 24] + [ ecalVeto ] 0 : Hit 2: [24.0793, 8.34132, 23] + [ ecalVeto ] 0 : Hit 3: [26.4873, 12.512, 22] + [ ecalVeto ] 0 : Hit 4: [24.0793, 8.34132, 21] + [ ecalVeto ] 0 : Hit 5: [26.4873, 12.512, 20] + [ ecalVeto ] 0 : Hit 6: [24.0793, 16.6826, 19] + [ ecalVeto ] 0 : Hit 7: [26.4873, 12.512, 18] + [ ecalVeto ] 0 : Hit 8: [24.0793, 16.6826, 17] + [ ecalVeto ] 0 : Hit 9: [26.4873, 20.8533, 16] + [ ecalVeto ] 0 : Hit 10: [26.4873, 20.8533, 14] + [ ecalVeto ] 0 : Hit 11: [26.4873, 20.8533, 12] + [ ecalVeto ] 0 : Hit 12: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2302.5; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3526 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, 41.7066, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3148.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3527 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10474.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3528 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6387.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3529 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 24] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -83.4132, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -79.2426, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -70.9012, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -66.7306, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -58.3892, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -54.2186, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -50.0479, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4766.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3530 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 62.5599, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 66.7306, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 62.5599, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3074.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3531 Brem photon produced 5 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3531 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-123.341, -66.7306, 28] + [ ecalVeto ] 0 : Hit 1: [-125.749, -62.5599, 27] + [ ecalVeto ] 0 : Hit 2: [-123.341, -58.3892, 26] + [ ecalVeto ] 0 : Hit 3: [-123.341, -58.3892, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, -54.2186, 22] + [ ecalVeto ] 0 : Hit 2: [-118.525, -50.0479, 21] + [ ecalVeto ] 0 : Hit 3: [-116.118, -54.2186, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [55.3824, 12.512, 20] + [ ecalVeto ] 0 : Hit 1: [52.9745, 16.6826, 19] + [ ecalVeto ] 0 : Hit 2: [55.3824, 12.512, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, -50.0479, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [45.7507, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [48.1586, 8.34132, 16] + [ ecalVeto ] 0 : Hit 2: [45.7507, 12.512, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -41.7066, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-118.525, -2.36672e-14, 1] + [ ecalVeto ] 0 : Hit 1: [-116.118, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3625.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3532 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -16.6826, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, -12.512, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -12.512, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3988.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3533 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 45.8773, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, 58.3892, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 33.3653, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-140.197, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-137.789, -58.3892, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [37.5914, 106.817, 5] + [ ecalVeto ] 0 : Hit 1: [39.9993, 110.987, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7120.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3534 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 62.5599, 28] + [ ecalVeto ] 0 : Hit 1: [38.5269, 58.3892, 27] + [ ecalVeto ] 0 : Hit 2: [40.9348, 54.2186, 26] + [ ecalVeto ] 0 : Hit 3: [38.5269, 50.0479, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 21] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 20] + [ ecalVeto ] 0 : Hit 3: [24.0793, 25.024, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3069.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3535 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, -81.7928, 10] + [ ecalVeto ] 0 : Hit 1: [88.1579, -77.6221, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [68.8945, -69.2808, 8] + [ ecalVeto ] 0 : Hit 1: [68.8945, -69.2808, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5468.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3536 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -144.353, 3] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -148.523, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9289.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3537 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6842.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3538 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5531.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3539 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, -62.5599, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, -58.3892, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, -54.2186, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 119 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7614.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3540 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2816.32; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3541 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, -81.7928, 26] + [ ecalVeto ] 0 : Hit 1: [31.3031, -79.2426, 25] + [ ecalVeto ] 0 : Hit 2: [33.711, -75.0719, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3839.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3542 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, 8.34132, 33] + [ ecalVeto ] 0 : Hit 1: [69.83, 4.17066, 32] + [ ecalVeto ] 0 : Hit 2: [69.83, 4.17066, 30] + [ ecalVeto ] 0 : Hit 3: [67.4221, -2.66454e-15, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -4.17066, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, -8.34132, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, -4.17066, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, -8.34132, 17] + [ ecalVeto ] 0 : Hit 4: [38.5269, -8.34132, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, -45.8773, 14] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, -41.7066, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4072.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3543 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -75.0719, 23] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -79.2426, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -70.9012, 21] + [ ecalVeto ] 0 : Hit 1: [4.81586, -66.7306, 20] + [ ecalVeto ] 0 : Hit 2: [2.40793, -62.5599, 19] + [ ecalVeto ] 0 : Hit 3: [4.81586, -58.3892, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -66.7306, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -75.0719, 20] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -70.9012, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 69.2808, 11] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 65.1101, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 85.9634, 3] + [ ecalVeto ] 0 : Hit 1: [-52.039, 90.1341, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4471.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3544 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5827.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3545 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [161.868, -83.4132, 28] + [ ecalVeto ] 0 : Hit 1: [159.46, -79.2426, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [147.421, -75.0719, 26] + [ ecalVeto ] 0 : Hit 1: [145.013, -70.9012, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [132.973, -66.7306, 24] + [ ecalVeto ] 0 : Hit 1: [130.565, -62.5599, 23] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-154.644, -70.9012, 23] + [ ecalVeto ] 0 : Hit 1: [-152.237, -66.7306, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-125.749, -62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, -58.3892, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-111.302, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, -58.3892, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4046.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3546 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, 115.158, 16] + [ ecalVeto ] 0 : Hit 1: [15.92, 110.987, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6738.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3547 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -37.5359, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, -37.5359, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, -33.3653, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5824.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3548 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -79.2426, 24] + [ ecalVeto ] 0 : Hit 1: [9.63173, -75.0719, 23] + [ ecalVeto ] 0 : Hit 2: [12.0397, -70.9012, 22] + [ ecalVeto ] 0 : Hit 3: [9.63173, -66.7306, 21] + [ ecalVeto ] 0 : Hit 4: [12.0397, -62.5599, 20] + [ ecalVeto ] 0 : Hit 5: [9.63173, -58.3892, 19] + [ ecalVeto ] 0 : Hit 6: [9.63173, -58.3892, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-40.9348, 12.512, 11] + [ ecalVeto ] 0 : Hit 4: [-38.5269, 16.6826, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4803.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3549 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [31.3031, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [33.711, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [26.4873, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [24.0793, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [26.4873, 29.1946, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 4.17066, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6005.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3550 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5925.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3551 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -156.865, 27] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -161.035, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -54.2186, 25] + [ ecalVeto ] 0 : Hit 1: [-108.894, -50.0479, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, -45.8773, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -45.8773, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5712.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3552 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5888.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3553 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [74.6459, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [77.0538, -50.0479, 16] + [ ecalVeto ] 0 : Hit 2: [74.6459, -45.8773, 15] + [ ecalVeto ] 0 : Hit 3: [77.0538, -41.7066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 9] + [ ecalVeto ] 0 : Hit 1: [-104.078, -2.36672e-14, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4496.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3554 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [44.8152, -169.377, 33] + [ ecalVeto ] 0 : Hit 1: [47.2231, -165.206, 32] + [ ecalVeto ] 0 : Hit 2: [44.8152, -161.035, 31] + [ ecalVeto ] 0 : Hit 3: [47.2231, -156.865, 30] + [ ecalVeto ] 0 : Hit 4: [44.8152, -152.694, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [39.9993, -144.353, 28] + [ ecalVeto ] 0 : Hit 1: [37.5914, -140.182, 27] + [ ecalVeto ] 0 : Hit 2: [39.9993, -136.011, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [32.7755, -106.817, 22] + [ ecalVeto ] 0 : Hit 1: [30.3676, -102.646, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -70.9012, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -66.7306, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -62.5599, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3139.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3555 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 505.889; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3556 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-95.3817, -65.1101, 14] + [ ecalVeto ] 0 : Hit 1: [-97.7897, -60.9395, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7069.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3557 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 94.3048, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5323.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3558 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, 20.8533, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, 16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, 12.512, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 8.34132, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4098.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3559 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 66.7306, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4462.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3560 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 106.817, 27] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 110.987, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 106.817, 26] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 102.646, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 102.646, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 70.9012, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -75.0719, 17] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -79.2426, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [83.3421, -127.67, 12] + [ ecalVeto ] 0 : Hit 1: [80.9341, -123.499, 11] + [ ecalVeto ] 0 : Hit 2: [83.3421, -119.329, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5729.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3561 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [81.8697, -25.024, 33] + [ ecalVeto ] 0 : Hit 1: [84.2776, -20.8533, 32] + [ ecalVeto ] 0 : Hit 2: [81.8697, -16.6826, 31] + [ ecalVeto ] 0 : Hit 3: [84.2776, -12.512, 30] + [ ecalVeto ] 0 : Hit 4: [81.8697, -8.34132, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [74.6459, 4.17066, 27] + [ ecalVeto ] 0 : Hit 1: [77.0538, 8.34132, 26] + [ ecalVeto ] 0 : Hit 2: [74.6459, 12.512, 25] + [ ecalVeto ] 0 : Hit 3: [77.0538, 16.6826, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [62.6062, 16.6826, 22] + [ ecalVeto ] 0 : Hit 1: [60.1983, 12.512, 21] + [ ecalVeto ] 0 : Hit 2: [62.6062, 16.6826, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5106.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3562 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 75.0719, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 127 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3826.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3563 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4071.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3564 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -98.4754, 1] + [ ecalVeto ] 0 : Hit 1: [-15.92, -102.646, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4961.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3565 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5545.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3566 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 85.9634, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 90.1341, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 85.9634, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 81.7928, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 73.4515, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 77.6221, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, 50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 45.8773, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 33.3653, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2618.38; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3567 Brem photon produced 71 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, 140.182, 16] + [ ecalVeto ] 0 : Hit 1: [59.2627, 136.011, 15] + [ ecalVeto ] 0 : Hit 2: [61.6707, 131.841, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [31.3031, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5530.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3568 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 58.3892, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 54.2186, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -186.059, 1] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -181.889, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6924.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3569 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3569 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 119.329, 23] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 115.158, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [-33.711, -8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -12.512, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -8.34132, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-108.894, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [-111.302, 54.2186, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7572.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3570 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7945.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3571 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2107.91; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3572 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 8: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3289.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3573 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5307.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3574 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 29.1946, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4925.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3575 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -62.5599, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -58.3892, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5806.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3576 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -87.5839, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -91.7545, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2857.24; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3577 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, -37.5359, 24] + [ ecalVeto ] 0 : Hit 1: [52.9745, -41.7066, 23] + [ ecalVeto ] 0 : Hit 2: [55.3824, -37.5359, 22] + [ ecalVeto ] 0 : Hit 3: [52.9745, -41.7066, 21] + [ ecalVeto ] 0 : Hit 4: [48.1586, -41.7066, 22] + [ ecalVeto ] 0 : Hit 5: [48.1586, -41.7066, 20] + [ ecalVeto ] 0 : Hit 6: [45.7507, -45.8773, 19] + [ ecalVeto ] 0 : Hit 7: [48.1586, -41.7066, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, 90.1341, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, 85.9634, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, 81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, 77.6221, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 90.1341, 18] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 85.9634, 17] + [ ecalVeto ] 0 : Hit 2: [-37.5914, 81.7928, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 50.0479, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [33.711, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, -45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, -41.7066, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, -37.5359, 11] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 37.5359, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, -33.3653, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3464.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3578 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-197.987, -54.2186, 27] + [ ecalVeto ] 0 : Hit 1: [-195.579, -50.0479, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [83.3421, 102.646, 18] + [ ecalVeto ] 0 : Hit 1: [80.9341, 98.4754, 17] + [ ecalVeto ] 0 : Hit 2: [83.3421, 102.646, 16] + [ ecalVeto ] 0 : Hit 3: [76.1183, 106.817, 18] + [ ecalVeto ] 0 : Hit 4: [76.1183, 106.817, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, -8.34132, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [95.3817, 73.4515, 17] + [ ecalVeto ] 0 : Hit 1: [95.3817, 73.4515, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -2.36672e-14, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [61.6707, 73.4515, 14] + [ ecalVeto ] 0 : Hit 1: [59.2627, 77.6221, 13] + [ ecalVeto ] 0 : Hit 2: [61.6707, 73.4515, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 25.024, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5076.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3579 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [26.4873, 45.8773, 22] + [ ecalVeto ] 0 : Hit 2: [24.0793, 41.7066, 21] + [ ecalVeto ] 0 : Hit 3: [26.4873, 37.5359, 20] + [ ecalVeto ] 0 : Hit 4: [24.0793, 33.3653, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3915.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3580 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5024.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3581 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3904.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3582 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2061.29; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3583 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, -98.4754, 28] + [ ecalVeto ] 0 : Hit 1: [44.8152, -102.646, 27] + [ ecalVeto ] 0 : Hit 2: [47.2231, -98.4754, 26] + [ ecalVeto ] 0 : Hit 3: [44.8152, -94.3048, 25] + [ ecalVeto ] 0 : Hit 4: [47.2231, -90.1341, 24] + [ ecalVeto ] 0 : Hit 5: [44.8152, -85.9634, 23] + [ ecalVeto ] 0 : Hit 6: [47.2231, -81.7928, 22] + [ ecalVeto ] 0 : Hit 7: [44.8152, -77.6221, 21] + [ ecalVeto ] 0 : Hit 8: [47.2231, -81.7928, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, -58.3892, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2609.11; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3584 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3472.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3585 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, -156.865, 23] + [ ecalVeto ] 0 : Hit 1: [-145.948, -152.694, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, -144.353, 19] + [ ecalVeto ] 0 : Hit 1: [-109.829, -148.523, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.039, -131.841, 12] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -127.67, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2982.3; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3586 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3953.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3587 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 18 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2021.45; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3588 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 50.0479, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5060.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3589 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 50.0479, 18] + [ ecalVeto ] 0 : Hit 1: [-69.83, 45.8773, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [105.013, 106.817, 6] + [ ecalVeto ] 0 : Hit 1: [102.606, 102.646, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4257.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3590 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3073.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3591 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, 94.3048, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 70.9012, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [45.7507, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [48.1586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 2: [45.7507, -29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6325.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3592 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, -136.011, 26] + [ ecalVeto ] 0 : Hit 1: [37.5914, -131.841, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [30.3676, -85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [32.7755, -81.7928, 18] + [ ecalVeto ] 0 : Hit 2: [31.3031, -79.2426, 17] + [ ecalVeto ] 0 : Hit 3: [33.711, -75.0719, 16] + [ ecalVeto ] 0 : Hit 4: [31.3031, -70.9012, 15] + [ ecalVeto ] 0 : Hit 5: [33.711, -66.7306, 14] + [ ecalVeto ] 0 : Hit 6: [31.3031, -62.5599, 13] + [ ecalVeto ] 0 : Hit 7: [33.711, -58.3892, 12] + [ ecalVeto ] 0 : Hit 8: [31.3031, -54.2186, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, -54.2186, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, -50.0479, 11] + [ ecalVeto ] 0 : Hit 4: [26.4873, -45.8773, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4756.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3593 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 16] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 12: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 13: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 14: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Hit 15: [-2.40793, 4.17066, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4943.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3594 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2762.58; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3595 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 161.035, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 156.865, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 94.3048, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4824.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3596 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2737.06; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3597 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 30 + [ ecalVeto ] 0 : Beginning track merging using 30 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 27 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 29] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 27] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 24] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 20.8533, 22] + [ ecalVeto ] 0 : Hit 3: [-40.9348, 20.8533, 23] + [ ecalVeto ] 0 : Hit 4: [-40.9348, 20.8533, 21] + [ ecalVeto ] 0 : Hit 5: [-38.5269, 16.6826, 20] + [ ecalVeto ] 0 : Hit 6: [-40.9348, 20.8533, 19] + [ ecalVeto ] 0 : Hit 7: [-38.5269, 16.6826, 18] + [ ecalVeto ] 0 : Hit 8: [-38.5269, 16.6826, 16] + [ ecalVeto ] 0 : Hit 9: [-38.5269, 16.6826, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [40.9348, 4.17066, 24] + [ ecalVeto ] 0 : Hit 1: [38.5269, -2.66454e-15, 23] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, -2.66454e-15, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 21] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 19] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 20] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 25.024, 19] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 20.8533, 18] + [ ecalVeto ] 0 : Hit 4: [-48.1586, 16.6826, 17] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 17] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 15] + [ ecalVeto ] 0 : Hit 2: [-33.711, 16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 12.512, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 12.512, 15] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 8.34132, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 13] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 12] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 12] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Hit 6: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 6] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 37.5359, 6] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 21: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Track 22: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 23: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 79.2426, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 75.0719, 3] + [ ecalVeto ] 0 : Track 24: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 33.3653, 3] + [ ecalVeto ] 0 : Track 25: + [ ecalVeto ] 0 : Hit 0: [-15.92, 94.3048, 4] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 90.1341, 3] + [ ecalVeto ] 0 : Track 26: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 27 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4832.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3598 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-152.237, 33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [-154.644, 37.5359, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-130.565, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-132.973, 33.3653, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4982.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3599 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 85.9634, 25] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 81.7928, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 73.4515, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 69.2808, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 45.8773, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 60.9395, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 37.5359, 17] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 33.3653, 16] + [ ecalVeto ] 0 : Hit 3: [-55.3824, 29.1946, 15] + [ ecalVeto ] 0 : Hit 4: [-52.9745, 25.024, 14] + [ ecalVeto ] 0 : Hit 5: [-48.1586, 25.024, 15] + [ ecalVeto ] 0 : Hit 6: [-45.7507, 20.8533, 14] + [ ecalVeto ] 0 : Hit 7: [-48.1586, 16.6826, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 37.5359, 18] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 41.7066, 17] + [ ecalVeto ] 0 : Hit 2: [-60.1983, 37.5359, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7379; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3600 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, -70.9012, 33] + [ ecalVeto ] 0 : Hit 1: [-137.789, -66.7306, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -45.8773, 27] + [ ecalVeto ] 0 : Hit 1: [-108.894, -41.7066, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, -37.5359, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -29.1946, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -25.024, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3290.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3601 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [48.1586, -25.024, 14] + [ ecalVeto ] 0 : Hit 2: [45.7507, -29.1946, 13] + [ ecalVeto ] 0 : Hit 3: [48.1586, -33.3653, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [33.711, -25.024, 14] + [ ecalVeto ] 0 : Hit 2: [31.3031, -29.1946, 13] + [ ecalVeto ] 0 : Hit 3: [33.711, -25.024, 12] + [ ecalVeto ] 0 : Hit 4: [31.3031, -29.1946, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [40.9348, -29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [38.5269, -33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [40.9348, -29.1946, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7709.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3602 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 177.718, 13] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 173.547, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3754.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3603 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 18] + [ ecalVeto ] 0 : Hit 1: [26.4873, -12.512, 16] + [ ecalVeto ] 0 : Hit 2: [24.0793, -8.34132, 15] + [ ecalVeto ] 0 : Hit 3: [26.4873, -12.512, 14] + [ ecalVeto ] 0 : Hit 4: [24.0793, -8.34132, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3233.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3604 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [55.3824, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [52.9745, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [102.606, 69.2808, 3] + [ ecalVeto ] 0 : Hit 1: [102.606, 69.2808, 1] + [ ecalVeto ] 0 : Hit 2: [105.013, 65.1101, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 128 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6187.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3605 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [66.4865, 73.4515, 3] + [ ecalVeto ] 0 : Hit 1: [68.8945, 69.2808, 2] + [ ecalVeto ] 0 : Hit 2: [66.4865, 73.4515, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [48.1586, 50.0479, 2] + [ ecalVeto ] 0 : Hit 1: [48.1586, 50.0479, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 117 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6917.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3606 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 20] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -58.3892, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5360.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3607 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, -41.7066, 30] + [ ecalVeto ] 0 : Hit 1: [60.1983, -37.5359, 29] + [ ecalVeto ] 0 : Hit 2: [60.1983, -37.5359, 27] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 813.238; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3608 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3608 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 77.6221, 10] + [ ecalVeto ] 0 : Hit 1: [68.8945, 77.6221, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7483.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3609 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5583.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3610 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4517.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3611 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5240.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3612 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2215.63; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3613 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4861.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3614 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, 148.523, 33] + [ ecalVeto ] 0 : Hit 1: [-117.053, 144.353, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, 136.011, 31] + [ ecalVeto ] 0 : Hit 1: [-109.829, 131.841, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-112.237, 119.329, 29] + [ ecalVeto ] 0 : Hit 1: [-109.829, 115.158, 28] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-105.013, 115.158, 27] + [ ecalVeto ] 0 : Hit 1: [-102.606, 110.987, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 102.646, 25] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 98.4754, 24] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [62.6062, -16.6826, 24] + [ ecalVeto ] 0 : Hit 1: [60.1983, -12.512, 23] + [ ecalVeto ] 0 : Hit 2: [62.6062, -8.34132, 22] + [ ecalVeto ] 0 : Hit 3: [60.1983, -4.17066, 21] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 90.1341, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 85.9634, 22] + [ ecalVeto ] 0 : Hit 2: [-90.5659, 90.1341, 21] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 77.6221, 20] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 16] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [40.9348, -4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, -8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [40.9348, -4.17066, 14] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 12] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3778.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3615 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, 41.7066, 27] + [ ecalVeto ] 0 : Hit 1: [-159.46, 37.5359, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [-145.013, 20.8533, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, 8.34132, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, 4.17066, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, -2.36672e-14, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, -4.17066, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -33.3653, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -69.2808, 13] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -65.1101, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3883.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3616 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 20] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 18] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 17] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 16] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 15] + [ ecalVeto ] 0 : Hit 6: [12.0397, 29.1946, 14] + [ ecalVeto ] 0 : Hit 7: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 8: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 9: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 10: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 11: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3775.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3617 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2651.21; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3618 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 123.499, 15] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 119.329, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8694.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3619 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [26.4873, -4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6735.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3620 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7734.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3621 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 65.1101, 16] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 60.9395, 15] + [ ecalVeto ] 0 : Hit 2: [-80.9341, 56.7688, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-130.565, 29.1946, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 4.17066, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5787.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3622 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -12.512, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, -8.34132, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, -4.17066, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, -2.66454e-15, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, 8.34132, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, 12.512, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1540.03; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3623 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 20] + [ ecalVeto ] 0 : Hit 2: [-118.525, -25.024, 19] + [ ecalVeto ] 0 : Hit 3: [-116.118, -29.1946, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, 12.512, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, -37.5359, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7322.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3624 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, -136.011, 31] + [ ecalVeto ] 0 : Hit 1: [-138.725, -131.841, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-141.132, -119.329, 31] + [ ecalVeto ] 0 : Hit 1: [-138.725, -115.158, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [33.711, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2121.38; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3625 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -91.7545, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -87.5839, 18] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -83.4132, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -58.3892, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -54.2186, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -45.8773, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 12: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -8.34132, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [69.83, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [67.4221, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4132.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3626 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4881.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3627 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, -4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-152.237, -8.34132, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, -37.5359, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [-77.0538, -16.6826, 15] + [ ecalVeto ] 0 : Hit 3: [-74.6459, -12.512, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3966.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3628 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 45.8773, 27] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 41.7066, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-197.987, -4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-195.579, -8.34132, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-116.118, -37.5359, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5096.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3629 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 22] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 8: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 9: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 10: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5856.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3630 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, -45.8773, 22] + [ ecalVeto ] 0 : Hit 1: [52.9745, -50.0479, 21] + [ ecalVeto ] 0 : Hit 2: [55.3824, -45.8773, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4273.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3631 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 165.206, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 161.035, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 152.694, 23] + [ ecalVeto ] 0 : Hit 1: [-52.039, 156.865, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 152.694, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 148.523, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-15.92, 152.694, 18] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 148.523, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-15.92, 136.011, 16] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 131.841, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3200.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3632 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 131.841, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 136.011, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 106.817, 16] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 102.646, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 98.4754, 15] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 102.646, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 75.0719, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 70.9012, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5006.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3633 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5027.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3634 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Hit 10: [4.81586, -2.66454e-15, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6612.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3635 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2642.88; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3636 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6685.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3637 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7303.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3638 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4200.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3639 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 73.4515, 21] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 70.9012, 20] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 66.7306, 19] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 62.5599, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [111.302, -54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [108.894, -50.0479, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [96.8541, -45.8773, 18] + [ ecalVeto ] 0 : Hit 1: [94.4462, -41.7066, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 54.2186, 15] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 50.0479, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 37.5359, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [-33.711, 16.6826, 1] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4027.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3640 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5595.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3641 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, -73.4515, 24] + [ ecalVeto ] 0 : Hit 1: [88.1579, -69.2808, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -60.9395, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -58.3892, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [62.6062, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [60.1983, -12.512, 11] + [ ecalVeto ] 0 : Hit 2: [62.6062, -16.6826, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 77.6221, 5] + [ ecalVeto ] 0 : Hit 1: [-54.4469, 77.6221, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4718.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3642 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-190.763, -66.7306, 23] + [ ecalVeto ] 0 : Hit 1: [-188.356, -62.5599, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-176.316, -58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [-173.908, -54.2186, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-137.789, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [-140.197, -45.8773, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-132.973, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-130.565, -37.5359, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3619.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3643 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4098.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3644 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 90.1341, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 85.9634, 20] + [ ecalVeto ] 0 : Hit 2: [-76.1183, 81.7928, 19] + [ ecalVeto ] 0 : Hit 3: [-73.7103, 77.6221, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 58.3892, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 111 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5966.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3645 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, 115.158, 28] + [ ecalVeto ] 0 : Hit 1: [44.8152, 110.987, 27] + [ ecalVeto ] 0 : Hit 2: [47.2231, 106.817, 26] + [ ecalVeto ] 0 : Hit 3: [44.8152, 102.646, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [39.9993, 94.3048, 24] + [ ecalVeto ] 0 : Hit 1: [37.5914, 90.1341, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [32.7755, 90.1341, 22] + [ ecalVeto ] 0 : Hit 1: [30.3676, 85.9634, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, 62.5599, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, 58.3892, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [33.711, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [33.711, -8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5689.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3646 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 8: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Hit 9: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, 45.8773, 1] + [ ecalVeto ] 0 : Hit 1: [-123.341, 41.7066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6168.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3647 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.88031, -123.499, 28] + [ ecalVeto ] 0 : Hit 1: [3.34348, -119.329, 27] + [ ecalVeto ] 0 : Hit 2: [3.88031, -115.158, 26] + [ ecalVeto ] 0 : Hit 3: [3.34348, -110.987, 25] + [ ecalVeto ] 0 : Hit 4: [3.88031, -115.158, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [45.7507, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [45.7507, 37.5359, 21] + [ ecalVeto ] 0 : Hit 2: [48.1586, 33.3653, 20] + [ ecalVeto ] 0 : Hit 3: [45.7507, 29.1946, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, 29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [38.5269, 25.024, 17] + [ ecalVeto ] 0 : Hit 2: [40.9348, 20.8533, 16] + [ ecalVeto ] 0 : Hit 3: [38.5269, 16.6826, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -87.5839, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, -83.4132, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, -79.2426, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, -75.0719, 15] + [ ecalVeto ] 0 : Hit 4: [12.0397, -70.9012, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -54.2186, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 8: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 9: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5076.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3648 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [77.0538, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [74.6459, -37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5226.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3649 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4014.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3650 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, 81.7928, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, 79.2426, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 83.4132, 20] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 79.2426, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 70.9012, 18] + [ ecalVeto ] 0 : Hit 1: [-33.711, 66.7306, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5320.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3651 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4975.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3652 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, 148.523, 33] + [ ecalVeto ] 0 : Hit 1: [-145.948, 144.353, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, 131.841, 29] + [ ecalVeto ] 0 : Hit 1: [-131.501, 127.67, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-126.685, 127.67, 27] + [ ecalVeto ] 0 : Hit 1: [-124.277, 123.499, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-112.237, 119.329, 25] + [ ecalVeto ] 0 : Hit 1: [-109.829, 115.158, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2555.47; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3653 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6222.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3654 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 83.4132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 79.2426, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 75.0719, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 70.9012, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 66.7306, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 62.5599, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [67.4221, 41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [67.4221, 41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6441.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3655 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-108.894, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6276.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3656 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, -12.512, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -8.34132, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5252.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3657 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [96.8541, 4.17066, 22] + [ ecalVeto ] 0 : Hit 1: [94.4462, 8.34132, 21] + [ ecalVeto ] 0 : Hit 2: [94.4462, 8.34132, 19] + [ ecalVeto ] 0 : Hit 3: [96.8541, 12.512, 18] + [ ecalVeto ] 0 : Hit 4: [96.8541, 20.8533, 20] + [ ecalVeto ] 0 : Hit 5: [94.4462, 16.6826, 19] + [ ecalVeto ] 0 : Hit 6: [96.8541, 20.8533, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2639.2; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3658 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [81.8697, 8.34132, 23] + [ ecalVeto ] 0 : Hit 1: [81.8697, 8.34132, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [77.0538, -2.66454e-15, 22] + [ ecalVeto ] 0 : Hit 1: [74.6459, 4.17066, 21] + [ ecalVeto ] 0 : Hit 2: [77.0538, -2.66454e-15, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [60.1983, 12.512, 21] + [ ecalVeto ] 0 : Hit 1: [62.6062, 8.34132, 20] + [ ecalVeto ] 0 : Hit 2: [60.1983, 4.17066, 19] + [ ecalVeto ] 0 : Hit 3: [62.6062, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 4: [60.1983, 4.17066, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [48.1586, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [45.7507, 12.512, 13] + [ ecalVeto ] 0 : Hit 2: [48.1586, 8.34132, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 50.0479, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4613.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3659 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -58.3892, 23] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -54.2186, 22] + [ ecalVeto ] 0 : Hit 2: [-62.6062, -50.0479, 21] + [ ecalVeto ] 0 : Hit 3: [-60.1983, -45.8773, 20] + [ ecalVeto ] 0 : Hit 4: [-62.6062, -41.7066, 19] + [ ecalVeto ] 0 : Hit 5: [-60.1983, -37.5359, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 45.8773, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5113.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3660 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-241.33, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-241.33, 12.512, 1] + [ ecalVeto ] 0 : Hit 2: [-246.146, 12.512, 2] + [ ecalVeto ] 0 : Hit 3: [-246.146, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3752.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3661 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5174.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3662 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6075.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3663 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 4.17066, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6340.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3664 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, 25.024, 27] + [ ecalVeto ] 0 : Hit 1: [-173.908, 29.1946, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [-159.46, 29.1946, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, 25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, 29.1946, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6828.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3665 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -50.0479, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6728.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3666 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6637.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3667 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3779.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3668 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, 45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-137.789, 50.0479, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 98.4754, 16] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 94.3048, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 102.646, 16] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 98.4754, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 75.0719, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 70.9012, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 66.7306, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5434.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3669 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, 8.34132, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, 12.512, 17] + [ ecalVeto ] 0 : Hit 4: [33.711, 8.34132, 16] + [ ecalVeto ] 0 : Hit 5: [31.3031, 4.17066, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 8: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 9: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1430.66; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3670 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, -85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [52.039, -81.7928, 17] + [ ecalVeto ] 0 : Hit 2: [54.4469, -77.6221, 16] + [ ecalVeto ] 0 : Hit 3: [52.039, -73.4515, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3596.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3671 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, 41.7066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 5: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 33.3653, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5744.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3672 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 18] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 17] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 16] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4069.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3673 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 127.67, 14] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 123.499, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 85.9634, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 83.4132, 8] + [ ecalVeto ] 0 : Hit 2: [-25.5517, 85.9634, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 70.9012, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 75.0719, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4826.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3674 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 62.5599, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6910.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3675 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Hit 9: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 10: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3630.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3676 Brem photon produced 86 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, -65.1101, 28] + [ ecalVeto ] 0 : Hit 1: [60.1983, -62.5599, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -87.5839, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -83.4132, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -29.1946, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -62.5599, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -58.3892, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6073.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3677 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -75.0719, 28] + [ ecalVeto ] 0 : Hit 1: [31.3031, -70.9012, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 22] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 21] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 20] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 19] + [ ecalVeto ] 0 : Hit 4: [19.2635, -33.3653, 18] + [ ecalVeto ] 0 : Hit 5: [16.8555, -29.1946, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 50.0479, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5616.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3678 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, 106.817, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, 102.646, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, 81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, 77.6221, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 45.8773, 9] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 9: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 10: [-9.63173, 41.7066, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5371.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3679 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -81.7928, 1] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -85.9634, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4671.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3680 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, 94.3048, 24] + [ ecalVeto ] 0 : Hit 1: [9.63173, 91.7545, 23] + [ ecalVeto ] 0 : Hit 2: [12.0397, 87.5839, 22] + [ ecalVeto ] 0 : Hit 3: [9.63173, 83.4132, 21] + [ ecalVeto ] 0 : Hit 4: [12.0397, 79.2426, 20] + [ ecalVeto ] 0 : Hit 5: [9.63173, 75.0719, 19] + [ ecalVeto ] 0 : Hit 6: [12.0397, 79.2426, 18] + [ ecalVeto ] 0 : Hit 7: [9.63173, 75.0719, 17] + [ ecalVeto ] 0 : Hit 8: [12.0397, 70.9012, 16] + [ ecalVeto ] 0 : Hit 9: [9.63173, 66.7306, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [224.475, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [224.475, -50.0479, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [219.659, -58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [217.251, -54.2186, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, 58.3892, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 8: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 11: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 12: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 13: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1647.69; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3681 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3681 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, 60.9395, 16] + [ ecalVeto ] 0 : Hit 1: [80.9341, 56.7688, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [111.302, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [108.894, -16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3613.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3682 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 7: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 8: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 9: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7589.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3683 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 70.9012, 18] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 66.7306, 17] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 62.5599, 16] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 58.3892, 15] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 54.2186, 14] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 54.2186, 12] + [ ecalVeto ] 0 : Hit 6: [-19.2635, 50.0479, 11] + [ ecalVeto ] 0 : Hit 7: [-16.8555, 45.8773, 10] + [ ecalVeto ] 0 : Hit 8: [-16.8555, 45.8773, 8] + [ ecalVeto ] 0 : Hit 9: [-19.2635, 41.7066, 7] + [ ecalVeto ] 0 : Hit 10: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Hit 11: [-16.8555, 37.5359, 4] + [ ecalVeto ] 0 : Hit 12: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 13: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 14: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Hit 15: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Hit 16: [-12.0397, 29.1946, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-52.9745, 8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [-55.3824, 12.512, 7] + [ ecalVeto ] 0 : Hit 5: [-52.9745, 8.34132, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-116.118, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-118.525, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3956.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3684 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 102.646, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 106.817, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 77.6221, 22] + [ ecalVeto ] 0 : Hit 1: [-61.6707, 73.4515, 21] + [ ecalVeto ] 0 : Hit 2: [-59.2627, 69.2808, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 9: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4000.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3685 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5548.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3686 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 4.17066, 28] + [ ecalVeto ] 0 : Hit 1: [38.5269, -2.66454e-15, 27] + [ ecalVeto ] 0 : Hit 2: [40.9348, 4.17066, 26] + [ ecalVeto ] 0 : Hit 3: [38.5269, 8.34132, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 20] + [ ecalVeto ] 0 : Hit 2: [24.0793, 16.6826, 19] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 17] + [ ecalVeto ] 0 : Hit 4: [26.4873, 12.512, 16] + [ ecalVeto ] 0 : Hit 5: [24.0793, 8.34132, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-62.6062, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5302.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3687 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1363.02; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3688 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 22] + [ ecalVeto ] 0 : Hit 2: [-77.0538, -33.3653, 21] + [ ecalVeto ] 0 : Hit 3: [-74.6459, -29.1946, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5939.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3689 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 156.865, 27] + [ ecalVeto ] 0 : Hit 1: [-15.92, 161.035, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-15.92, 152.694, 26] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 148.523, 25] + [ ecalVeto ] 0 : Hit 2: [-15.92, 144.353, 24] + [ ecalVeto ] 0 : Hit 3: [-18.3279, 140.182, 23] + [ ecalVeto ] 0 : Hit 4: [-15.92, 136.011, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 119.329, 19] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 115.158, 18] + [ ecalVeto ] 0 : Hit 2: [-11.1041, 110.987, 17] + [ ecalVeto ] 0 : Hit 3: [-8.69618, 106.817, 16] + [ ecalVeto ] 0 : Hit 4: [-11.1041, 102.646, 15] + [ ecalVeto ] 0 : Hit 5: [-8.69618, 98.4754, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 87.5839, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 83.4132, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 79.2426, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 75.0719, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 70.9012, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 66.7306, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3322.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3690 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -65.1101, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -60.9395, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -60.9395, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -58.3892, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [80.9341, -106.817, 11] + [ ecalVeto ] 0 : Hit 1: [80.9341, -106.817, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -58.3892, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -165.206, 1] + [ ecalVeto ] 0 : Hit 1: [-15.92, -169.377, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4111.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3691 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [15.92, 110.987, 29] + [ ecalVeto ] 0 : Hit 1: [15.92, 110.987, 27] + [ ecalVeto ] 0 : Hit 2: [18.3279, 106.817, 26] + [ ecalVeto ] 0 : Hit 3: [15.92, 102.646, 25] + [ ecalVeto ] 0 : Hit 4: [18.3279, 106.817, 24] + [ ecalVeto ] 0 : Hit 5: [15.92, 102.646, 23] + [ ecalVeto ] 0 : Hit 6: [18.3279, 98.4754, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, -58.3892, 27] + [ ecalVeto ] 0 : Hit 1: [-130.565, -54.2186, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -50.0479, 25] + [ ecalVeto ] 0 : Hit 1: [-116.118, -45.8773, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [24.0793, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [26.4873, 54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [24.0793, 50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [26.4873, 45.8773, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3622.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3692 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [-48.1586, -8.34132, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5460.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3693 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6461.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3694 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 22 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2007.86; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3695 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4424.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3696 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [19.2635, -50.0479, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5894.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3697 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [38.5269, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [38.5269, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [31.3031, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [33.711, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [31.3031, 29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [33.711, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6209.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3698 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 169.377, 30] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 173.547, 29] + [ ecalVeto ] 0 : Hit 2: [-44.8152, 169.377, 28] + [ ecalVeto ] 0 : Hit 3: [-47.2231, 165.206, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3603.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3699 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, -70.9012, 33] + [ ecalVeto ] 0 : Hit 1: [-166.684, -66.7306, 32] + [ ecalVeto ] 0 : Hit 2: [-169.092, -62.5599, 31] + [ ecalVeto ] 0 : Hit 3: [-166.684, -58.3892, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, -58.3892, 29] + [ ecalVeto ] 0 : Hit 1: [-159.46, -54.2186, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-154.644, -54.2186, 27] + [ ecalVeto ] 0 : Hit 1: [-152.237, -50.0479, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-130.565, -62.5599, 26] + [ ecalVeto ] 0 : Hit 1: [-132.973, -58.3892, 25] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-147.421, -50.0479, 25] + [ ecalVeto ] 0 : Hit 1: [-145.013, -45.8773, 24] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-132.973, -41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, -37.5359, 22] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-118.525, -33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, -29.1946, 20] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-104.078, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-101.67, -29.1946, 18] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -20.8533, 16] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 14] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6092.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3700 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5452.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3701 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 14 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2952.75; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3702 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4555.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3703 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [141.132, 85.9634, 22] + [ ecalVeto ] 0 : Hit 1: [138.725, 81.7928, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 33.3653, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4976.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3704 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 33.3653, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4664.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3705 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 102.646, 1] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 106.817, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3160.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3706 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7230.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3707 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 21] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 20] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 18] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-102.606, -60.9395, 18] + [ ecalVeto ] 0 : Hit 2: [-97.7897, -60.9395, 19] + [ ecalVeto ] 0 : Hit 3: [-95.3817, -56.7688, 18] + [ ecalVeto ] 0 : Hit 4: [-96.8541, -54.2186, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 17] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 16] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 15] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -56.7688, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -52.5982, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -33.3653, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2744.77; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3708 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 136.011, 27] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 131.841, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 106.817, 17] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 110.987, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 91.7545, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 87.5839, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 91.7545, 13] + [ ecalVeto ] 0 : Hit 3: [9.63173, 91.7545, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, 91.7545, 12] + [ ecalVeto ] 0 : Hit 5: [4.81586, 91.7545, 10] + [ ecalVeto ] 0 : Hit 6: [2.40793, 87.5839, 9] + [ ecalVeto ] 0 : Hit 7: [4.81586, 83.4132, 8] + [ ecalVeto ] 0 : Hit 8: [2.40793, 79.2426, 7] + [ ecalVeto ] 0 : Hit 9: [4.81586, 75.0719, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -90.1341, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -87.5839, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, 45.8773, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 112 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3890.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3709 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3332.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3710 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-212.435, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-210.027, 8.34132, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-197.987, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-195.579, 8.34132, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [83.3421, 52.5982, 16] + [ ecalVeto ] 0 : Hit 1: [81.8697, 50.0479, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-183.54, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-181.132, 16.6826, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3403.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3711 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 25] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 24] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 23] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 22] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 20] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 19] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 20] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 10: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 11: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -75.0719, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -70.9012, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3564.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3712 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 98.4754, 23] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 94.3048, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [33.711, 8.34132, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-69.83, -37.5359, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7206.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3713 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 10 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1886.51; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3714 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -2.36672e-14, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 4.17066, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [32.7755, -98.4754, 18] + [ ecalVeto ] 0 : Hit 1: [30.3676, -94.3048, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4690.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3715 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 66.7306, 26] + [ ecalVeto ] 0 : Hit 1: [45.7507, 62.5599, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, 62.5599, 24] + [ ecalVeto ] 0 : Hit 1: [38.5269, 58.3892, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 50.0479, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 21] + [ ecalVeto ] 0 : Hit 2: [33.711, 50.0479, 20] + [ ecalVeto ] 0 : Hit 3: [31.3031, 45.8773, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 70.9012, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 45.8773, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 8: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5124.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3716 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -115.158, 13] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -110.987, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -66.7306, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -70.9012, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, -16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4371.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3717 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3500.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3718 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [37.5914, 123.499, 1] + [ ecalVeto ] 0 : Hit 1: [39.9993, 127.67, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2409.47; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3719 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, 98.4754, 26] + [ ecalVeto ] 0 : Hit 1: [15.92, 94.3048, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4243.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3720 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [205.211, 75.0719, 20] + [ ecalVeto ] 0 : Hit 1: [202.803, 70.9012, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -33.3653, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 8: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Hit 9: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 8.34132, 2] + [ ecalVeto ] 0 : Hit 1: [-69.83, 4.17066, 1] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5641.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3721 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6921.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3722 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6775.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3723 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5476.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3724 Brem photon produced 82 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4542.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3725 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5468.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3726 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [119.461, -81.7928, 32] + [ ecalVeto ] 0 : Hit 1: [117.053, -77.6221, 31] + [ ecalVeto ] 0 : Hit 2: [119.461, -73.4515, 30] + [ ecalVeto ] 0 : Hit 3: [117.053, -69.2808, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [76.1183, -56.7688, 22] + [ ecalVeto ] 0 : Hit 1: [74.6459, -54.2186, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 17] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 16] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 15] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 14] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 12] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -25.024, 12] + [ ecalVeto ] 0 : Hit 10: [-12.0397, -20.8533, 11] + [ ecalVeto ] 0 : Hit 11: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 12: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 13: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 14: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 15: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 16: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 17: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 18: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -25.024, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3539.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3727 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6263.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3728 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3914.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3729 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4806.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3730 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [123.341, 50.0479, 31] + [ ecalVeto ] 0 : Hit 1: [125.749, 45.8773, 30] + [ ecalVeto ] 0 : Hit 2: [123.341, 41.7066, 29] + [ ecalVeto ] 0 : Hit 3: [125.749, 37.5359, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [133.909, -106.817, 28] + [ ecalVeto ] 0 : Hit 1: [131.501, -102.646, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [241.33, -37.5359, 26] + [ ecalVeto ] 0 : Hit 1: [238.922, -33.3653, 25] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1284.05; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3731 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [-55.3824, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4296.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3732 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [59.2627, 102.646, 11] + [ ecalVeto ] 0 : Hit 1: [61.6707, 98.4754, 10] + [ ecalVeto ] 0 : Hit 2: [59.2627, 94.3048, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 75.0719, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 79.2426, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6475.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3733 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2721.5; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3734 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -4.17066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6814.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3735 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 17 + [ ecalVeto ] 0 : Beginning track merging using 17 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -75.0719, 20] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 18] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -75.0719, 16] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -79.2426, 18] + [ ecalVeto ] 0 : Hit 4: [-33.711, -75.0719, 17] + [ ecalVeto ] 0 : Hit 5: [-31.3031, -70.9012, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -77.6221, 20] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -73.4515, 19] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -70.9012, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 18] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -58.3892, 17] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -54.2186, 16] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -50.0479, 15] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -54.2186, 14] + [ ecalVeto ] 0 : Hit 6: [-19.2635, -50.0479, 13] + [ ecalVeto ] 0 : Hit 7: [-26.4873, -45.8773, 15] + [ ecalVeto ] 0 : Hit 8: [-24.0793, -50.0479, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -75.0719, 18] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -75.0719, 16] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -70.9012, 18] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -66.7306, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -58.3892, 18] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -62.5599, 18] + [ ecalVeto ] 0 : Hit 3: [-33.711, -58.3892, 17] + [ ecalVeto ] 0 : Hit 4: [-31.3031, -62.5599, 16] + [ ecalVeto ] 0 : Hit 5: [-33.711, -58.3892, 15] + [ ecalVeto ] 0 : Hit 6: [-31.3031, -62.5599, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -66.7306, 18] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -62.5599, 17] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -66.7306, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -54.2186, 15] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -58.3892, 14] + [ ecalVeto ] 0 : Hit 4: [-31.3031, -54.2186, 16] + [ ecalVeto ] 0 : Hit 5: [-33.711, -50.0479, 15] + [ ecalVeto ] 0 : Hit 6: [-31.3031, -54.2186, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -66.7306, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 14] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [40.9348, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [38.5269, 8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [40.9348, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7599.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3736 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 17] + [ ecalVeto ] 0 : Hit 4: [16.8555, -29.1946, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 8: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 9: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 58.3892, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 62.5599, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, 58.3892, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3381.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3737 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 6: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 10] + [ ecalVeto ] 0 : Hit 4: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Hit 6: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 7: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 8: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 9: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 10: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 11: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Hit 12: [4.81586, -25.024, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6883.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3738 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -79.2426, 25] + [ ecalVeto ] 0 : Hit 1: [33.711, -75.0719, 24] + [ ecalVeto ] 0 : Hit 2: [31.3031, -70.9012, 23] + [ ecalVeto ] 0 : Hit 3: [33.711, -66.7306, 22] + [ ecalVeto ] 0 : Hit 4: [31.3031, -70.9012, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [26.4873, -62.5599, 18] + [ ecalVeto ] 0 : Hit 2: [24.0793, -58.3892, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 15] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 8.34132, 14] + [ ecalVeto ] 0 : Hit 3: [-40.9348, 4.17066, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -54.2186, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, -50.0479, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3885.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3739 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 8: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 9: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -75.0719, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -70.9012, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -66.7306, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -62.5599, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -58.3892, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [40.9348, -62.5599, 2] + [ ecalVeto ] 0 : Hit 1: [40.9348, -62.5599, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6107.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3740 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3701.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3741 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-52.039, 81.7928, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -119.329, 17] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -123.499, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 66.7306, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8649.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3742 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-123.341, 33.3653, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2232.55; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3743 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [33.711, 8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [33.711, 8.34132, 8] + [ ecalVeto ] 0 : Hit 5: [31.3031, 12.512, 7] + [ ecalVeto ] 0 : Hit 6: [33.711, 8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [26.4873, 12.512, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 4: [19.2635, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [19.2635, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 7: [16.8555, 4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5738.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3744 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3123.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3745 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 127.67, 28] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 123.499, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 18] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -58.3892, 17] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -54.2186, 16] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -54.2186, 14] + [ ecalVeto ] 0 : Hit 5: [2.40793, -54.2186, 15] + [ ecalVeto ] 0 : Hit 6: [2.40793, -54.2186, 13] + [ ecalVeto ] 0 : Hit 7: [4.81586, -58.3892, 12] + [ ecalVeto ] 0 : Hit 8: [2.40793, -54.2186, 11] + [ ecalVeto ] 0 : Hit 9: [4.81586, -50.0479, 10] + [ ecalVeto ] 0 : Hit 10: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 112 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5141.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3746 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 41.7066, 2] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 37.5359, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5707.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3747 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, 156.865, 28] + [ ecalVeto ] 0 : Hit 1: [18.3279, 156.865, 26] + [ ecalVeto ] 0 : Hit 2: [15.92, 161.035, 25] + [ ecalVeto ] 0 : Hit 3: [18.3279, 156.865, 24] + [ ecalVeto ] 0 : Hit 4: [15.92, 161.035, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -98.4754, 24] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -94.3048, 23] + [ ecalVeto ] 0 : Hit 2: [-37.5914, -90.1341, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [11.1041, 161.035, 22] + [ ecalVeto ] 0 : Hit 1: [8.69618, 156.865, 21] + [ ecalVeto ] 0 : Hit 2: [11.1041, 152.694, 20] + [ ecalVeto ] 0 : Hit 3: [11.1041, 152.694, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -79.2426, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 19] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 18] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -62.5599, 17] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -58.3892, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [15.92, 144.353, 17] + [ ecalVeto ] 0 : Hit 1: [15.92, 144.353, 15] + [ ecalVeto ] 0 : Hit 2: [18.3279, 140.182, 14] + [ ecalVeto ] 0 : Hit 3: [15.92, 136.011, 13] + [ ecalVeto ] 0 : Hit 4: [18.3279, 131.841, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1918.83; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3748 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 26] + [ ecalVeto ] 0 : Hit 1: [38.5269, 16.6826, 25] + [ ecalVeto ] 0 : Hit 2: [40.9348, 12.512, 24] + [ ecalVeto ] 0 : Hit 3: [38.5269, 16.6826, 23] + [ ecalVeto ] 0 : Hit 4: [40.9348, 20.8533, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, 12.512, 25] + [ ecalVeto ] 0 : Hit 1: [33.711, 16.6826, 24] + [ ecalVeto ] 0 : Hit 2: [31.3031, 12.512, 23] + [ ecalVeto ] 0 : Hit 3: [33.711, 16.6826, 22] + [ ecalVeto ] 0 : Hit 4: [31.3031, 12.512, 21] + [ ecalVeto ] 0 : Hit 5: [33.711, 8.34132, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 24] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 23] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 22] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 21] + [ ecalVeto ] 0 : Hit 4: [26.4873, 12.512, 20] + [ ecalVeto ] 0 : Hit 5: [24.0793, 8.34132, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1991.65; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3749 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 8.34132, 23] + [ ecalVeto ] 0 : Hit 1: [40.9348, 12.512, 22] + [ ecalVeto ] 0 : Hit 2: [38.5269, 16.6826, 21] + [ ecalVeto ] 0 : Hit 3: [40.9348, 12.512, 20] + [ ecalVeto ] 0 : Hit 4: [38.5269, 16.6826, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 17] + [ ecalVeto ] 0 : Hit 2: [33.711, 8.34132, 16] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 15] + [ ecalVeto ] 0 : Hit 4: [33.711, 8.34132, 14] + [ ecalVeto ] 0 : Hit 5: [31.3031, 4.17066, 13] + [ ecalVeto ] 0 : Hit 6: [33.711, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 7: [31.3031, -4.17066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, -8.34132, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6076.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3750 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 45.8773, 27] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 41.7066, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 25] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 16.6826, 20] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 12.512, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8500.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3751 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 37.5359, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-33.711, 41.7066, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4366.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3752 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6544.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3753 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -54.2186, 16] + [ ecalVeto ] 0 : Hit 1: [26.4873, -54.2186, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 14] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -29.1946, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5987.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3754 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5382.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3755 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [55.3824, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [52.9745, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [55.3824, -20.8533, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6692.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3756 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3617.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3757 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [31.3031, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [33.711, 8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [26.4873, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6993.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3758 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6262.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3759 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, -85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-109.829, -81.7928, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -73.4515, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6041.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3760 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 20] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 19] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 18] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 17] + [ ecalVeto ] 0 : Hit 4: [9.63173, 41.7066, 15] + [ ecalVeto ] 0 : Hit 5: [9.63173, 41.7066, 13] + [ ecalVeto ] 0 : Hit 6: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 7: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 8: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 9: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 10: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 11: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 12: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 13: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2567.33; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3761 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3548.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3762 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -83.4132, 25] + [ ecalVeto ] 0 : Hit 1: [26.4873, -79.2426, 24] + [ ecalVeto ] 0 : Hit 2: [24.0793, -75.0719, 23] + [ ecalVeto ] 0 : Hit 3: [26.4873, -70.9012, 22] + [ ecalVeto ] 0 : Hit 4: [24.0793, -66.7306, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 83.4132, 23] + [ ecalVeto ] 0 : Hit 1: [12.0397, 87.5839, 22] + [ ecalVeto ] 0 : Hit 2: [9.63173, 91.7545, 21] + [ ecalVeto ] 0 : Hit 3: [11.1041, 94.3048, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -66.7306, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, -62.5599, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, -58.3892, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, -54.2186, 17] + [ ecalVeto ] 0 : Hit 4: [12.0397, -54.2186, 18] + [ ecalVeto ] 0 : Hit 5: [12.0397, -54.2186, 16] + [ ecalVeto ] 0 : Hit 6: [9.63173, -50.0479, 15] + [ ecalVeto ] 0 : Hit 7: [12.0397, -45.8773, 14] + [ ecalVeto ] 0 : Hit 8: [9.63173, -41.7066, 13] + [ ecalVeto ] 0 : Hit 9: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 10: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3414.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3763 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 14 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, 58.3892, 29] + [ ecalVeto ] 0 : Hit 1: [-159.46, 62.5599, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 58.3892, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, 62.5599, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, 58.3892, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, 62.5599, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-105.013, -81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-102.606, -77.6221, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -73.4515, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -69.2808, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -60.9395, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -56.7688, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 65.1101, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 60.9395, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 56.7688, 17] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [39.9993, 77.6221, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, 75.0719, 15] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 54.2186, 14] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [33.711, 75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 70.9012, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, 66.7306, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, 62.5599, 11] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 12] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 5] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 14 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5652.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3764 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2566.55; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3765 Brem photon produced 5 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-219.659, -66.7306, 29] + [ ecalVeto ] 0 : Hit 1: [-217.251, -62.5599, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-212.435, -62.5599, 27] + [ ecalVeto ] 0 : Hit 1: [-210.027, -58.3892, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [112.237, -127.67, 22] + [ ecalVeto ] 0 : Hit 1: [109.829, -123.499, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-154.644, -54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-152.237, -50.0479, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-140.197, -54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-137.789, -50.0479, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-105.013, 81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [-102.606, 77.6221, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 16] + [ ecalVeto ] 0 : Hit 2: [-62.6062, -25.024, 15] + [ ecalVeto ] 0 : Hit 3: [-60.1983, -20.8533, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [83.3421, -102.646, 16] + [ ecalVeto ] 0 : Hit 1: [80.9341, -98.4754, 15] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-104.078, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, -45.8773, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 12] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [31.3031, -20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [33.711, -16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [31.3031, -20.8533, 9] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -20.8533, 8] + [ ecalVeto ] 0 : Hit 4: [-40.9348, -20.8533, 9] + [ ecalVeto ] 0 : Hit 5: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4092.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3766 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 85.9634, 22] + [ ecalVeto ] 0 : Hit 1: [-47.2231, 81.7928, 21] + [ ecalVeto ] 0 : Hit 2: [-44.8152, 77.6221, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 66.7306, 18] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 62.5599, 17] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 58.3892, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 37.5359, 11] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 33.3653, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4397.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3767 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6628.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3768 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3825.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3769 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 127.67, 29] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 131.841, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 123.499, 27] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 127.67, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 50.0479, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5048.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3770 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6619.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3771 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [183.54, 12.512, 28] + [ ecalVeto ] 0 : Hit 1: [181.132, 8.34132, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3977.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3772 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [141.132, -119.329, 28] + [ ecalVeto ] 0 : Hit 1: [138.725, -115.158, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-15.92, 144.353, 22] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 140.182, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-66.4865, -140.182, 20] + [ ecalVeto ] 0 : Hit 1: [-68.8945, -136.011, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-66.4865, -165.206, 18] + [ ecalVeto ] 0 : Hit 1: [-68.8945, -161.035, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4734.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3773 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4089.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3774 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 20 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1426.93; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3775 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3899.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3776 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 11 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4154.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3777 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 18] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -45.8773, 17] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -41.7066, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6985.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3778 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5009.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3779 Brem photon produced 97 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5097.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3780 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [88.1579, -102.646, 27] + [ ecalVeto ] 0 : Hit 1: [90.5659, -98.4754, 26] + [ ecalVeto ] 0 : Hit 2: [88.1579, -94.3048, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [83.3421, -94.3048, 24] + [ ecalVeto ] 0 : Hit 1: [80.9341, -90.1341, 23] + [ ecalVeto ] 0 : Hit 2: [83.3421, -85.9634, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [73.7103, -77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [76.1183, -73.4515, 20] + [ ecalVeto ] 0 : Hit 2: [73.7103, -69.2808, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [62.6062, -58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [60.1983, -54.2186, 15] + [ ecalVeto ] 0 : Hit 2: [62.6062, -50.0479, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [52.9745, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [55.3824, -37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [52.9745, -33.3653, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [19.2635, 25.024, 4] + [ ecalVeto ] 0 : Hit 5: [16.8555, 29.1946, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Hit 6: [4.81586, 41.7066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6177.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3781 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -90.1341, 7] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -85.9634, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6460.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3782 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.039, -165.206, 9] + [ ecalVeto ] 0 : Hit 1: [54.4469, -161.035, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6744.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3783 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-131.501, -94.3048, 24] + [ ecalVeto ] 0 : Hit 1: [-133.909, -90.1341, 23] + [ ecalVeto ] 0 : Hit 2: [-131.501, -94.3048, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 123.499, 22] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 119.329, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-15.92, 94.3048, 18] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 90.1341, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-73.7103, 102.646, 12] + [ ecalVeto ] 0 : Hit 1: [-76.1183, 98.4754, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [48.1586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [45.7507, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [48.1586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [45.7507, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5321.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3784 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -83.4132, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -87.5839, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [101.67, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [104.078, 8.34132, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [66.4865, -90.1341, 11] + [ ecalVeto ] 0 : Hit 1: [68.8945, -94.3048, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [80.9341, -106.817, 9] + [ ecalVeto ] 0 : Hit 1: [83.3421, -110.987, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [88.1579, -110.987, 7] + [ ecalVeto ] 0 : Hit 1: [90.5659, -115.158, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5677.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3785 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [44.8152, 85.9634, 31] + [ ecalVeto ] 0 : Hit 1: [44.8152, 85.9634, 29] + [ ecalVeto ] 0 : Hit 2: [47.2231, 90.1341, 28] + [ ecalVeto ] 0 : Hit 3: [44.8152, 85.9634, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 75.0719, 24] + [ ecalVeto ] 0 : Hit 1: [31.3031, 70.9012, 23] + [ ecalVeto ] 0 : Hit 2: [33.711, 66.7306, 22] + [ ecalVeto ] 0 : Hit 3: [31.3031, 62.5599, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 24] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 23] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 22] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 21] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 20] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 19] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 18] + [ ecalVeto ] 0 : Hit 7: [2.40793, -4.17066, 17] + [ ecalVeto ] 0 : Hit 8: [4.81586, -8.34132, 16] + [ ecalVeto ] 0 : Hit 9: [2.40793, -12.512, 15] + [ ecalVeto ] 0 : Hit 10: [4.81586, -8.34132, 14] + [ ecalVeto ] 0 : Hit 11: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Hit 12: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 13: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 14: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 15: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 16: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 17: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 18: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 19: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 54.2186, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, 50.0479, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -106.817, 13] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -102.646, 12] + [ ecalVeto ] 0 : Hit 2: [-3.88031, -98.4754, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -87.5839, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -83.4132, 9] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1796.32; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3786 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7673.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3787 Brem photon produced 97 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, 140.182, 32] + [ ecalVeto ] 0 : Hit 1: [15.92, 136.011, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [11.1041, 127.67, 28] + [ ecalVeto ] 0 : Hit 1: [8.69618, 123.499, 27] + [ ecalVeto ] 0 : Hit 2: [11.1041, 119.329, 26] + [ ecalVeto ] 0 : Hit 3: [8.69618, 115.158, 25] + [ ecalVeto ] 0 : Hit 4: [11.1041, 110.987, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [8.69618, 98.4754, 23] + [ ecalVeto ] 0 : Hit 1: [11.1041, 94.3048, 22] + [ ecalVeto ] 0 : Hit 2: [9.63173, 91.7545, 21] + [ ecalVeto ] 0 : Hit 3: [12.0397, 87.5839, 20] + [ ecalVeto ] 0 : Hit 4: [9.63173, 83.4132, 19] + [ ecalVeto ] 0 : Hit 5: [12.0397, 79.2426, 18] + [ ecalVeto ] 0 : Hit 6: [9.63173, 75.0719, 17] + [ ecalVeto ] 0 : Hit 7: [12.0397, 70.9012, 16] + [ ecalVeto ] 0 : Hit 8: [9.63173, 66.7306, 15] + [ ecalVeto ] 0 : Hit 9: [12.0397, 62.5599, 14] + [ ecalVeto ] 0 : Hit 10: [9.63173, 58.3892, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4003.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3788 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, 79.2426, 29] + [ ecalVeto ] 0 : Hit 1: [-152.237, 75.0719, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, 79.2426, 27] + [ ecalVeto ] 0 : Hit 1: [-137.789, 75.0719, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 65.1101, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 60.9395, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [108.894, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [108.894, 8.34132, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 58.3892, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [111.302, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [111.302, -4.17066, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 58.3892, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [31.3031, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [33.711, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [31.3031, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [33.711, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4358.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3789 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, -102.646, 15] + [ ecalVeto ] 0 : Hit 1: [32.7755, -98.4754, 14] + [ ecalVeto ] 0 : Hit 2: [30.3676, -102.646, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.039, -73.4515, 12] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -69.2808, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [11.1041, -110.987, 12] + [ ecalVeto ] 0 : Hit 1: [8.69618, -106.817, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [102.606, 161.035, 9] + [ ecalVeto ] 0 : Hit 1: [105.013, 156.865, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5926.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3790 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7364.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3791 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-94.4462, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-96.8541, -29.1946, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -20.8533, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6619.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3792 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 18] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 17] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 16] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6308.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3793 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, 106.817, 16] + [ ecalVeto ] 0 : Hit 1: [88.1579, 102.646, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, -62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-123.341, -58.3892, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-101.67, -45.8773, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [68.8945, 85.9634, 12] + [ ecalVeto ] 0 : Hit 1: [66.4865, 81.7928, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1492.23; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3794 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3794 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -66.7306, 22] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -62.5599, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [-33.711, -50.0479, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -41.7066, 18] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -37.5359, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -20.8533, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [-60.1983, -37.5359, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-62.6062, -50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [-60.1983, -45.8773, 6] + [ ecalVeto ] 0 : Hit 4: [-62.6062, -41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5058.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3795 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 22] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 21] + [ ecalVeto ] 0 : Hit 3: [19.2635, 33.3653, 20] + [ ecalVeto ] 0 : Hit 4: [16.8555, 29.1946, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 8: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Hit 9: [4.81586, -8.34132, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6509.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3796 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-69.83, 45.8773, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 25.024, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 54.2186, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5985.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3797 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 33.3653, 20] + [ ecalVeto ] 0 : Hit 1: [45.7507, 29.1946, 19] + [ ecalVeto ] 0 : Hit 2: [48.1586, 33.3653, 18] + [ ecalVeto ] 0 : Hit 3: [45.7507, 29.1946, 17] + [ ecalVeto ] 0 : Hit 4: [48.1586, 25.024, 16] + [ ecalVeto ] 0 : Hit 5: [48.1586, 25.024, 14] + [ ecalVeto ] 0 : Hit 6: [55.3824, 20.8533, 16] + [ ecalVeto ] 0 : Hit 7: [55.3824, 20.8533, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, 33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [40.9348, 29.1946, 18] + [ ecalVeto ] 0 : Hit 2: [40.9348, 29.1946, 16] + [ ecalVeto ] 0 : Hit 3: [38.5269, 25.024, 15] + [ ecalVeto ] 0 : Hit 4: [40.9348, 29.1946, 14] + [ ecalVeto ] 0 : Hit 5: [38.5269, 25.024, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [52.9745, 33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [55.3824, 37.5359, 18] + [ ecalVeto ] 0 : Hit 2: [52.9745, 33.3653, 17] + [ ecalVeto ] 0 : Hit 3: [55.3824, 29.1946, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 25.024, 16] + [ ecalVeto ] 0 : Hit 1: [33.711, 25.024, 14] + [ ecalVeto ] 0 : Hit 2: [31.3031, 29.1946, 13] + [ ecalVeto ] 0 : Hit 3: [33.711, 25.024, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7311.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3798 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 45.8773, 19] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 41.7066, 18] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 41.7066, 16] + [ ecalVeto ] 0 : Hit 4: [-40.9348, 37.5359, 15] + [ ecalVeto ] 0 : Hit 5: [-38.5269, 33.3653, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3116.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3799 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 15 + [ ecalVeto ] 0 : Beginning track merging using 15 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 14 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.039, 98.4754, 29] + [ ecalVeto ] 0 : Hit 1: [54.4469, 94.3048, 28] + [ ecalVeto ] 0 : Hit 2: [52.039, 90.1341, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 75.0719, 26] + [ ecalVeto ] 0 : Hit 1: [31.3031, 70.9012, 25] + [ ecalVeto ] 0 : Hit 2: [33.711, 66.7306, 24] + [ ecalVeto ] 0 : Hit 3: [31.3031, 62.5599, 23] + [ ecalVeto ] 0 : Hit 4: [33.711, 58.3892, 22] + [ ecalVeto ] 0 : Hit 5: [31.3031, 54.2186, 21] + [ ecalVeto ] 0 : Hit 6: [33.711, 50.0479, 20] + [ ecalVeto ] 0 : Hit 7: [31.3031, 45.8773, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -75.0719, 23] + [ ecalVeto ] 0 : Hit 1: [26.4873, -79.2426, 22] + [ ecalVeto ] 0 : Hit 2: [24.0793, -75.0719, 21] + [ ecalVeto ] 0 : Hit 3: [26.4873, -70.9012, 20] + [ ecalVeto ] 0 : Hit 4: [24.0793, -66.7306, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, 33.3653, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -198.571, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -202.742, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -45.8773, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, -41.7066, 12] + [ ecalVeto ] 0 : Hit 5: [16.8555, -45.8773, 11] + [ ecalVeto ] 0 : Hit 6: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 7: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -177.718, 15] + [ ecalVeto ] 0 : Hit 1: [-52.039, -173.547, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -169.377, 15] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -165.206, 14] + [ ecalVeto ] 0 : Hit 2: [-68.8945, -161.035, 13] + [ ecalVeto ] 0 : Hit 3: [-66.4865, -156.865, 12] + [ ecalVeto ] 0 : Hit 4: [-73.7103, -161.035, 14] + [ ecalVeto ] 0 : Hit 5: [-76.1183, -156.865, 13] + [ ecalVeto ] 0 : Hit 6: [-73.7103, -152.694, 12] + [ ecalVeto ] 0 : Hit 7: [-73.7103, -152.694, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -131.841, 13] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -136.011, 12] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-66.4865, -140.182, 12] + [ ecalVeto ] 0 : Hit 1: [-68.8945, -136.011, 11] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 14 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2280.83; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3800 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4359.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3801 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 69.2808, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, 73.4515, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-95.3817, 65.1101, 20] + [ ecalVeto ] 0 : Hit 1: [-97.7897, 60.9395, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [126.685, -94.3048, 18] + [ ecalVeto ] 0 : Hit 1: [124.277, -90.1341, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 52.5982, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 56.7688, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5823.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3802 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-152.237, 8.34132, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7120.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3803 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 8 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 829.092; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3804 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [101.67, -37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [104.078, -33.3653, 22] + [ ecalVeto ] 0 : Hit 2: [101.67, -29.1946, 21] + [ ecalVeto ] 0 : Hit 3: [104.078, -25.024, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -119.329, 14] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -119.329, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3398.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3805 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3391.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3806 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 12.512, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, 115.158, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, 119.329, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, 20.8533, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2552.66; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3807 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4751.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3808 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3062.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3809 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6317.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3810 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4376.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3811 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 18 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3430.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3812 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-95.3817, 73.4515, 16] + [ ecalVeto ] 0 : Hit 1: [-97.7897, 77.6221, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7450.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3813 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, -41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3945.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3814 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 54.2186, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 41.7066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7378.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3815 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2222.77; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3816 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, -123.499, 27] + [ ecalVeto ] 0 : Hit 1: [11.1041, -127.67, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4955.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3817 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5582.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3818 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, -102.646, 27] + [ ecalVeto ] 0 : Hit 1: [-138.725, -98.4754, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, -98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-131.501, -102.646, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [77.0538, 16.6826, 24] + [ ecalVeto ] 0 : Hit 1: [74.6459, 12.512, 23] + [ ecalVeto ] 0 : Hit 2: [77.0538, 16.6826, 22] + [ ecalVeto ] 0 : Hit 3: [74.6459, 12.512, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [69.83, 12.512, 20] + [ ecalVeto ] 0 : Hit 1: [67.4221, 8.34132, 19] + [ ecalVeto ] 0 : Hit 2: [69.83, 12.512, 18] + [ ecalVeto ] 0 : Hit 3: [67.4221, 8.34132, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [33.711, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [33.711, -25.024, 4] + [ ecalVeto ] 0 : Hit 2: [31.3031, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [33.711, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3070.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3819 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 95.9252, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, 91.7545, 18] + [ ecalVeto ] 0 : Hit 2: [2.40793, 87.5839, 17] + [ ecalVeto ] 0 : Hit 3: [4.81586, 83.4132, 16] + [ ecalVeto ] 0 : Hit 4: [2.40793, 79.2426, 15] + [ ecalVeto ] 0 : Hit 5: [4.81586, 75.0719, 14] + [ ecalVeto ] 0 : Hit 6: [9.63173, 75.0719, 15] + [ ecalVeto ] 0 : Hit 7: [9.63173, 75.0719, 13] + [ ecalVeto ] 0 : Hit 8: [12.0397, 70.9012, 12] + [ ecalVeto ] 0 : Hit 9: [9.63173, 66.7306, 11] + [ ecalVeto ] 0 : Hit 10: [12.0397, 62.5599, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [11.1041, 94.3048, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, 91.7545, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, 87.5839, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, 83.4132, 15] + [ ecalVeto ] 0 : Hit 4: [12.0397, 79.2426, 14] + [ ecalVeto ] 0 : Hit 5: [9.63173, 83.4132, 13] + [ ecalVeto ] 0 : Hit 6: [12.0397, 79.2426, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [15.92, 102.646, 17] + [ ecalVeto ] 0 : Hit 1: [18.3279, 106.817, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6488; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3820 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, -115.158, 22] + [ ecalVeto ] 0 : Hit 1: [30.3676, -110.987, 21] + [ ecalVeto ] 0 : Hit 2: [32.7755, -106.817, 20] + [ ecalVeto ] 0 : Hit 3: [30.3676, -102.646, 19] + [ ecalVeto ] 0 : Hit 4: [32.7755, -98.4754, 18] + [ ecalVeto ] 0 : Hit 5: [30.3676, -94.3048, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-145.013, 54.2186, 22] + [ ecalVeto ] 0 : Hit 1: [-147.421, 58.3892, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, 66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, 70.9012, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, 58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 54.2186, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-104.078, 50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 45.8773, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, -79.2426, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -75.0719, 13] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [19.2635, -66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -62.5599, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -58.3892, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -54.2186, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2320.77; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3821 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 54.2186, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, 50.0479, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 37.5359, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -85.9634, 11] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -90.1341, 10] + [ ecalVeto ] 0 : Hit 2: [-25.5517, -94.3048, 9] + [ ecalVeto ] 0 : Hit 3: [-23.1438, -90.1341, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3637.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3822 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 9] + [ ecalVeto ] 0 : Hit 1: [-101.67, -4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [62.6062, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [62.6062, 41.7066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5515.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3823 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, 54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-152.237, 58.3892, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, 45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-137.789, 41.7066, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [24.0793, 50.0479, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 115.158, 11] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 110.987, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-111.302, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-108.894, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5961.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3824 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 9: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4623.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3825 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-1.47238, -110.987, 24] + [ ecalVeto ] 0 : Hit 1: [-3.88031, -106.817, 23] + [ ecalVeto ] 0 : Hit 2: [-1.47238, -110.987, 22] + [ ecalVeto ] 0 : Hit 3: [-3.88031, -106.817, 21] + [ ecalVeto ] 0 : Hit 4: [-1.47238, -110.987, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3791.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3826 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, -131.841, 23] + [ ecalVeto ] 0 : Hit 1: [-160.396, -127.67, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, -94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-124.277, -90.1341, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 18] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 17] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 15] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 16] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 14] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 12: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 13: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 14: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -25.024, 8] + [ ecalVeto ] 0 : Hit 4: [-26.4873, -29.1946, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5369.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3827 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, -131.841, 27] + [ ecalVeto ] 0 : Hit 1: [11.1041, -136.011, 26] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6738.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3828 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3561.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3829 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-109.829, -156.865, 28] + [ ecalVeto ] 0 : Hit 1: [-112.237, -152.694, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -123.499, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -119.329, 22] + [ ecalVeto ] 0 : Hit 2: [-90.5659, -115.158, 21] + [ ecalVeto ] 0 : Hit 3: [-88.1579, -119.329, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-80.9341, -115.158, 20] + [ ecalVeto ] 0 : Hit 1: [-83.3421, -110.987, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3072.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3830 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -98.4754, 13] + [ ecalVeto ] 0 : Hit 1: [-102.606, -94.3048, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3340.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3831 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [12.0397, 70.9012, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 16] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 4.17066, 15] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5511.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3832 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -102.646, 22] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -98.4754, 21] + [ ecalVeto ] 0 : Hit 2: [-30.3676, -102.646, 20] + [ ecalVeto ] 0 : Hit 3: [-32.7755, -98.4754, 19] + [ ecalVeto ] 0 : Hit 4: [-30.3676, -94.3048, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -75.0719, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -70.9012, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -66.7306, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -62.5599, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4431.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3833 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 9: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 10: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7941.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3834 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 23] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 22] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 21] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -4.17066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 16] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -16.6826, 14] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 15] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [44.8152, -85.9634, 15] + [ ecalVeto ] 0 : Hit 1: [47.2231, -81.7928, 14] + [ ecalVeto ] 0 : Hit 2: [44.8152, -77.6221, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1687.19; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3835 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3833.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3836 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [140.197, 45.8773, 26] + [ ecalVeto ] 0 : Hit 1: [137.789, 41.7066, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [125.749, 37.5359, 24] + [ ecalVeto ] 0 : Hit 1: [123.341, 33.3653, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5412.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3837 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, -4.17066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -83.4132, 20] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -79.2426, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-148.356, 156.865, 11] + [ ecalVeto ] 0 : Hit 1: [-145.948, 152.694, 10] + [ ecalVeto ] 0 : Hit 2: [-148.356, 156.865, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-148.356, 140.182, 11] + [ ecalVeto ] 0 : Hit 1: [-145.948, 144.353, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4523.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3838 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5667.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3839 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 20.8533, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 16] + [ ecalVeto ] 0 : Hit 2: [-111.302, 20.8533, 15] + [ ecalVeto ] 0 : Hit 3: [-108.894, 25.024, 14] + [ ecalVeto ] 0 : Hit 4: [-111.302, 29.1946, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [26.4873, -12.512, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4983.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3840 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4464.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3841 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, 37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [33.711, 41.7066, 18] + [ ecalVeto ] 0 : Hit 2: [31.3031, 37.5359, 17] + [ ecalVeto ] 0 : Hit 3: [33.711, 33.3653, 16] + [ ecalVeto ] 0 : Hit 4: [31.3031, 29.1946, 15] + [ ecalVeto ] 0 : Hit 5: [33.711, 25.024, 14] + [ ecalVeto ] 0 : Hit 6: [31.3031, 29.1946, 13] + [ ecalVeto ] 0 : Hit 7: [33.711, 25.024, 12] + [ ecalVeto ] 0 : Hit 8: [31.3031, 20.8533, 11] + [ ecalVeto ] 0 : Hit 9: [33.711, 25.024, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4986; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3842 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1246.91; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3843 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -206.913, 23] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -202.742, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 22] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 21] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 20] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 19] + [ ecalVeto ] 0 : Hit 4: [16.8555, -4.17066, 17] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 18] + [ ecalVeto ] 0 : Hit 6: [12.0397, -4.17066, 16] + [ ecalVeto ] 0 : Hit 7: [9.63173, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 8: [12.0397, -4.17066, 14] + [ ecalVeto ] 0 : Hit 9: [9.63173, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 10: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 11: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -181.889, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -177.718, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -58.3892, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4308.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3844 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, 29.1946, 20] + [ ecalVeto ] 0 : Hit 1: [52.9745, 25.024, 19] + [ ecalVeto ] 0 : Hit 2: [52.9745, 25.024, 17] + [ ecalVeto ] 0 : Hit 3: [48.1586, 25.024, 18] + [ ecalVeto ] 0 : Hit 4: [48.1586, 25.024, 16] + [ ecalVeto ] 0 : Hit 5: [45.7507, 20.8533, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3789.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3845 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 21] + [ ecalVeto ] 0 : Hit 2: [33.711, -8.34132, 20] + [ ecalVeto ] 0 : Hit 3: [31.3031, -12.512, 19] + [ ecalVeto ] 0 : Hit 4: [31.3031, -12.512, 17] + [ ecalVeto ] 0 : Hit 5: [31.3031, -12.512, 15] + [ ecalVeto ] 0 : Hit 6: [31.3031, -12.512, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -56.7688, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -52.5982, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 73.4515, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2123.54; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3846 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-88.1579, -85.9634, 10] + [ ecalVeto ] 0 : Hit 1: [-90.5659, -81.7928, 9] + [ ecalVeto ] 0 : Hit 2: [-88.1579, -77.6221, 8] + [ ecalVeto ] 0 : Hit 3: [-90.5659, -81.7928, 7] + [ ecalVeto ] 0 : Hit 4: [-83.3421, -77.6221, 9] + [ ecalVeto ] 0 : Hit 5: [-80.9341, -73.4515, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -45.8773, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -65.1101, 9] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -69.2808, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-80.9341, -65.1101, 8] + [ ecalVeto ] 0 : Hit 1: [-83.3421, -60.9395, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -58.3892, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5623.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3847 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 13] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -65.1101, 7] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -60.9395, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6113.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3848 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5621.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3849 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3103.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3850 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 58.3892, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 54.2186, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2324.46; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3851 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -87.5839, 31] + [ ecalVeto ] 0 : Hit 1: [4.81586, -83.4132, 30] + [ ecalVeto ] 0 : Hit 2: [2.40793, -79.2426, 29] + [ ecalVeto ] 0 : Hit 3: [4.81586, -75.0719, 28] + [ ecalVeto ] 0 : Hit 4: [2.40793, -70.9012, 27] + [ ecalVeto ] 0 : Hit 5: [4.81586, -66.7306, 26] + [ ecalVeto ] 0 : Hit 6: [2.40793, -62.5599, 25] + [ ecalVeto ] 0 : Hit 7: [4.81586, -58.3892, 24] + [ ecalVeto ] 0 : Hit 8: [2.40793, -54.2186, 23] + [ ecalVeto ] 0 : Hit 9: [4.81586, -50.0479, 22] + [ ecalVeto ] 0 : Hit 10: [2.40793, -45.8773, 21] + [ ecalVeto ] 0 : Hit 11: [4.81586, -41.7066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5575.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3852 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4597.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3853 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4735.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3854 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, -29.1946, 13] + [ ecalVeto ] 0 : Hit 2: [33.711, -33.3653, 12] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6149.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3855 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 16] + [ ecalVeto ] 0 : Hit 2: [-74.6459, -4.17066, 14] + [ ecalVeto ] 0 : Hit 3: [-69.83, -4.17066, 15] + [ ecalVeto ] 0 : Hit 4: [-67.4221, -8.34132, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.039, -73.4515, 14] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -69.2808, 13] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -66.7306, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [-40.9348, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [-38.5269, -16.6826, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5999.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3856 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4085.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3857 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4085.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3858 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [195.579, -41.7066, 33] + [ ecalVeto ] 0 : Hit 1: [197.987, -37.5359, 32] + [ ecalVeto ] 0 : Hit 2: [195.579, -41.7066, 31] + [ ecalVeto ] 0 : Hit 3: [188.356, -37.5359, 33] + [ ecalVeto ] 0 : Hit 4: [188.356, -37.5359, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5178.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3859 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 136.011, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 131.841, 18] + [ ecalVeto ] 0 : Hit 2: [-97.7897, 127.67, 17] + [ ecalVeto ] 0 : Hit 3: [-95.3817, 123.499, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 94.3048, 13] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 90.1341, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 11] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6962.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3860 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -54.2186, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5182.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3861 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 8.34132, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [24.0793, -16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -83.4132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -79.2426, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -83.4132, 3] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -83.4132, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -87.5839, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7915.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3862 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 85.9634, 22] + [ ecalVeto ] 0 : Hit 2: [-39.9993, 85.9634, 23] + [ ecalVeto ] 0 : Hit 3: [-37.5914, 90.1341, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4081.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3863 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -20.8533, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3344.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3864 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3947.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3865 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 41.7066, 27] + [ ecalVeto ] 0 : Hit 1: [-116.118, 45.8773, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-108.894, 50.0479, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 50.0479, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 45.8773, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3799.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3866 Brem photon produced 75 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3373.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3867 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [52.039, -98.4754, 15] + [ ecalVeto ] 0 : Hit 1: [52.039, -98.4754, 13] + [ ecalVeto ] 0 : Hit 2: [54.4469, -94.3048, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [44.8152, -94.3048, 13] + [ ecalVeto ] 0 : Hit 1: [47.2231, -90.1341, 12] + [ ecalVeto ] 0 : Hit 2: [44.8152, -85.9634, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -79.2426, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, -75.0719, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -79.2426, 11] + [ ecalVeto ] 0 : Hit 3: [19.2635, -75.0719, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5180.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3868 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4829.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3869 Brem photon produced 88 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5521; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3870 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -77.6221, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5338.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3871 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [153.172, -198.571, 29] + [ ecalVeto ] 0 : Hit 1: [155.58, -194.401, 28] + [ ecalVeto ] 0 : Hit 2: [153.172, -190.23, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 15] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 8: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 9: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 10: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 11: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3623.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3872 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [60.1983, -62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [62.6062, -58.3892, 18] + [ ecalVeto ] 0 : Hit 2: [60.1983, -62.5599, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [23.1438, 106.817, 5] + [ ecalVeto ] 0 : Hit 1: [25.5517, 102.646, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4923.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3873 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 24] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 23] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 22] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 21] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 20] + [ ecalVeto ] 0 : Hit 6: [12.0397, 29.1946, 18] + [ ecalVeto ] 0 : Hit 7: [16.8555, 29.1946, 19] + [ ecalVeto ] 0 : Hit 8: [16.8555, 29.1946, 17] + [ ecalVeto ] 0 : Hit 9: [19.2635, 33.3653, 16] + [ ecalVeto ] 0 : Hit 10: [16.8555, 29.1946, 15] + [ ecalVeto ] 0 : Hit 11: [19.2635, 33.3653, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4189.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3874 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4358.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3875 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, 136.011, 32] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 131.841, 31] + [ ecalVeto ] 0 : Hit 2: [-23.1438, 131.841, 32] + [ ecalVeto ] 0 : Hit 3: [-25.5517, 127.67, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 140.182, 32] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 136.011, 31] + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1117.2; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3876 Brem photon produced 83 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [31.3031, -20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [33.711, -16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [31.3031, -20.8533, 1] + [ ecalVeto ] 0 : Hit 4: [33.711, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1958.92; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3877 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4267.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3878 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4778.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3879 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, -69.2808, 14] + [ ecalVeto ] 0 : Hit 1: [80.9341, -65.1101, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4444.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3880 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4379.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3881 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, -115.158, 28] + [ ecalVeto ] 0 : Hit 1: [59.2627, -110.987, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [54.4469, -110.987, 26] + [ ecalVeto ] 0 : Hit 1: [52.039, -106.817, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [32.7755, -98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [30.3676, -94.3048, 19] + [ ecalVeto ] 0 : Hit 2: [32.7755, -90.1341, 18] + [ ecalVeto ] 0 : Hit 3: [30.3676, -85.9634, 17] + [ ecalVeto ] 0 : Hit 4: [32.7755, -81.7928, 16] + [ ecalVeto ] 0 : Hit 5: [31.3031, -79.2426, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -45.8773, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, -41.7066, 6] + [ ecalVeto ] 0 : Hit 5: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -75.0719, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -70.9012, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3295.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3882 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [19.2635, -50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [16.8555, -54.2186, 17] + [ ecalVeto ] 0 : Hit 3: [16.8555, -54.2186, 15] + [ ecalVeto ] 0 : Hit 4: [12.0397, -54.2186, 16] + [ ecalVeto ] 0 : Hit 5: [12.0397, -54.2186, 14] + [ ecalVeto ] 0 : Hit 6: [9.63173, -50.0479, 13] + [ ecalVeto ] 0 : Hit 7: [12.0397, -45.8773, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 18] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 17] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, -98.4754, 11] + [ ecalVeto ] 0 : Hit 1: [-102.606, -94.3048, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4360.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3883 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, 20.8533, 22] + [ ecalVeto ] 0 : Hit 1: [52.9745, 25.024, 21] + [ ecalVeto ] 0 : Hit 2: [55.3824, 20.8533, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4805.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3884 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, -8.34132, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-123.341, -16.6826, 20] + [ ecalVeto ] 0 : Hit 1: [-125.749, -20.8533, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -12.512, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-116.118, -12.512, 18] + [ ecalVeto ] 0 : Hit 1: [-118.525, -8.34132, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-125.749, -4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-125.749, -4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [-123.341, -2.36672e-14, 14] + [ ecalVeto ] 0 : Hit 3: [-130.565, -4.17066, 16] + [ ecalVeto ] 0 : Hit 4: [-132.973, -2.36672e-14, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8101.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3885 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 161.035, 23] + [ ecalVeto ] 0 : Hit 1: [-138.725, 156.865, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, 144.353, 21] + [ ecalVeto ] 0 : Hit 1: [-124.277, 140.182, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 70.9012, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, 66.7306, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, 62.5599, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, 58.3892, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-105.013, 123.499, 17] + [ ecalVeto ] 0 : Hit 1: [-102.606, 119.329, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 66.7306, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5595.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3886 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, 81.7928, 25] + [ ecalVeto ] 0 : Hit 1: [-117.053, 85.9634, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, 77.6221, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, 73.4515, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, 73.4515, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, 69.2808, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 52.5982, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 50.0479, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 118 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5955.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3887 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 41.7066, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-87.2224, -4.17066, 24] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -4.17066, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 37.5359, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -91.7545, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -87.5839, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -83.4132, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -79.2426, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, -75.0719, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4594.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3888 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 81.7928, 27] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 77.6221, 26] + [ ecalVeto ] 0 : Hit 2: [-61.6707, 73.4515, 25] + [ ecalVeto ] 0 : Hit 3: [-59.2627, 69.2808, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-131.501, 102.646, 22] + [ ecalVeto ] 0 : Hit 1: [-133.909, 98.4754, 21] + [ ecalVeto ] 0 : Hit 2: [-131.501, 94.3048, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 20] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 45.8773, 19] + [ ecalVeto ] 0 : Hit 3: [-52.9745, 41.7066, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-119.461, 90.1341, 19] + [ ecalVeto ] 0 : Hit 1: [-117.053, 94.3048, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-112.237, 85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-109.829, 81.7928, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -12.512, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5817.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3889 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [48.1586, -8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [48.1586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [45.7507, -12.512, 11] + [ ecalVeto ] 0 : Hit 4: [38.5269, -8.34132, 13] + [ ecalVeto ] 0 : Hit 5: [40.9348, -12.512, 12] + [ ecalVeto ] 0 : Hit 6: [38.5269, -8.34132, 11] + [ ecalVeto ] 0 : Hit 7: [40.9348, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 4: [26.4873, 4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7427.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3890 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [141.132, 169.377, 26] + [ ecalVeto ] 0 : Hit 1: [138.725, 165.206, 25] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4119.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3891 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 144.353, 9] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 140.182, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [147.421, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [145.013, 12.512, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5644.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3892 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6602.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3893 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 127.67, 29] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 123.499, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 115.158, 27] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 110.987, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [48.1586, 50.0479, 22] + [ ecalVeto ] 0 : Hit 1: [45.7507, 45.8773, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [40.9348, 45.8773, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, 41.7066, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, 37.5359, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, 33.3653, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, 33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 29.1946, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5220.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3894 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.88031, -98.4754, 24] + [ ecalVeto ] 0 : Hit 1: [2.40793, -95.9252, 23] + [ ecalVeto ] 0 : Hit 2: [4.81586, -91.7545, 22] + [ ecalVeto ] 0 : Hit 3: [2.40793, -87.5839, 21] + [ ecalVeto ] 0 : Hit 4: [4.81586, -83.4132, 20] + [ ecalVeto ] 0 : Hit 5: [2.40793, -79.2426, 19] + [ ecalVeto ] 0 : Hit 6: [2.40793, -79.2426, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 18] + [ ecalVeto ] 0 : Hit 1: [2.40793, -62.5599, 17] + [ ecalVeto ] 0 : Hit 2: [4.81586, -58.3892, 16] + [ ecalVeto ] 0 : Hit 3: [2.40793, -54.2186, 15] + [ ecalVeto ] 0 : Hit 4: [2.40793, -54.2186, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -70.9012, 16] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -70.9012, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -66.7306, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -62.5599, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 12: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 13: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-108.894, -58.3892, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4099.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3895 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [19.2635, 33.3653, 4] + [ ecalVeto ] 0 : Hit 6: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 7: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 8: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 9: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, 81.7928, 9] + [ ecalVeto ] 0 : Hit 1: [-102.606, 85.9634, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 65.1101, 5] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 62.5599, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 109 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6719.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3896 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5946.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3897 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3434.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3898 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 17 + [ ecalVeto ] 0 : Beginning track merging using 17 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 17 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, -177.718, 33] + [ ecalVeto ] 0 : Hit 1: [-124.277, -173.547, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-109.829, -165.206, 30] + [ ecalVeto ] 0 : Hit 1: [-112.237, -161.035, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-154.644, -54.2186, 29] + [ ecalVeto ] 0 : Hit 1: [-152.237, -58.3892, 28] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-140.197, -54.2186, 27] + [ ecalVeto ] 0 : Hit 1: [-137.789, -50.0479, 26] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -152.694, 27] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -148.523, 26] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-125.749, -54.2186, 25] + [ ecalVeto ] 0 : Hit 1: [-123.341, -50.0479, 24] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -140.182, 25] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -136.011, 24] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-111.302, -45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, -50.0479, 22] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -127.67, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -123.499, 22] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 20] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -119.329, 21] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -115.158, 20] + [ ecalVeto ] 0 : Hit 2: [-68.8945, -110.987, 19] + [ ecalVeto ] 0 : Hit 3: [-66.4865, -106.817, 18] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 14] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -85.9634, 14] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -81.7928, 13] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 10] + [ ecalVeto ] 0 : Hit 2: [-33.711, -58.3892, 9] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -54.2186, 8] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 10] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 17 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4964.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3899 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, 25.024, 12] + [ ecalVeto ] 0 : Hit 5: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 6: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 8: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 9: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 10: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 11: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 12: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2904.6; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3900 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 73.4515, 27] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 69.2808, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 50.0479, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 66.7306, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 62.5599, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 66.7306, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 62.5599, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5045.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3901 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 66.7306, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 62.5599, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 58.3892, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4216.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3902 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -50.0479, 8] + [ ecalVeto ] 0 : Hit 4: [-26.4873, -54.2186, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -77.6221, 1] + [ ecalVeto ] 0 : Hit 1: [-52.039, -81.7928, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4355.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3903 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 70.9012, 22] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 66.7306, 21] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 70.9012, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3693.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3904 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-153.172, 98.4754, 30] + [ ecalVeto ] 0 : Hit 1: [-155.58, 94.3048, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, 87.5839, 29] + [ ecalVeto ] 0 : Hit 1: [-152.237, 83.4132, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, 79.2426, 27] + [ ecalVeto ] 0 : Hit 1: [-137.789, 75.0719, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-132.973, 66.7306, 25] + [ ecalVeto ] 0 : Hit 1: [-130.565, 62.5599, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-125.749, 54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, 50.0479, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-118.525, 41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, 37.5359, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-111.302, 37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, 33.3653, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-104.078, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 29.1946, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2778.7; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3905 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, -54.2186, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -50.0479, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -50.0479, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4775.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3906 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 66.7306, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 62.5599, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5875.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3907 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5003.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3908 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 186.059, 31] + [ ecalVeto ] 0 : Hit 1: [-52.039, 181.889, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [26.4873, -45.8773, 22] + [ ecalVeto ] 0 : Hit 2: [24.0793, -41.7066, 21] + [ ecalVeto ] 0 : Hit 3: [26.4873, -37.5359, 20] + [ ecalVeto ] 0 : Hit 4: [24.0793, -33.3653, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1643.11; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3909 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, -52.5982, 16] + [ ecalVeto ] 0 : Hit 1: [81.8697, -50.0479, 15] + [ ecalVeto ] 0 : Hit 2: [83.3421, -52.5982, 14] + [ ecalVeto ] 0 : Hit 3: [83.3421, -52.5982, 12] + [ ecalVeto ] 0 : Hit 4: [80.9341, -56.7688, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [68.8945, -60.9395, 14] + [ ecalVeto ] 0 : Hit 1: [67.4221, -58.3892, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5140.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3910 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -66.7306, 20] + [ ecalVeto ] 0 : Hit 1: [45.7507, -62.5599, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [141.132, 110.987, 8] + [ ecalVeto ] 0 : Hit 1: [138.725, 106.817, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4624.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3911 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, 123.499, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, 119.329, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 41.7066, 22] + [ ecalVeto ] 0 : Hit 2: [-82.4065, 37.5359, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [148.356, -98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [148.356, -98.4754, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 54.2186, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4026.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3912 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-152.237, -8.34132, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [47.2231, 73.4515, 16] + [ ecalVeto ] 0 : Hit 1: [45.7507, 70.9012, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [-26.4873, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6181.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3913 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 73.4515, 7] + [ ecalVeto ] 0 : Hit 1: [-102.606, 69.2808, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5608.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3914 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4335.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3915 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -119.329, 25] + [ ecalVeto ] 0 : Hit 1: [-52.039, -123.499, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-15.92, -94.3048, 14] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -90.1341, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [24.0793, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [26.4873, 12.512, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 8.34132, 5] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [-48.1586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [-45.7507, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-48.1586, 8.34132, 3] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7498.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3916 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5110.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3917 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -131.841, 8] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -127.67, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3676.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3918 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -156.865, 32] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -152.694, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -140.182, 30] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -136.011, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -106.817, 25] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -102.646, 24] + [ ecalVeto ] 0 : Hit 2: [-32.7755, -98.4754, 23] + [ ecalVeto ] 0 : Hit 3: [-30.3676, -94.3048, 22] + [ ecalVeto ] 0 : Hit 4: [-32.7755, -90.1341, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -70.9012, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [83.3421, 152.694, 18] + [ ecalVeto ] 0 : Hit 1: [80.9341, 148.523, 17] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [76.1183, 140.182, 16] + [ ecalVeto ] 0 : Hit 1: [73.7103, 136.011, 15] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [69.83, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [67.4221, -25.024, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3393.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3919 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, -75.0719, 23] + [ ecalVeto ] 0 : Hit 1: [-145.013, -79.2426, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -102.646, 20] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -98.4754, 19] + [ ecalVeto ] 0 : Hit 2: [-61.6707, -98.4754, 17] + [ ecalVeto ] 0 : Hit 3: [-59.2627, -94.3048, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, 70.9012, 1] + [ ecalVeto ] 0 : Hit 1: [19.2635, 75.0719, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7024.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3920 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 6: [19.2635, -33.3653, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [62.6062, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [62.6062, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [62.6062, -16.6826, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [40.9348, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [40.9348, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5853.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3921 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, -115.158, 10] + [ ecalVeto ] 0 : Hit 1: [59.2627, -110.987, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4621.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3922 Brem photon produced 71 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5956.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3923 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 79.2426, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 75.0719, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6860.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3924 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 152.694, 29] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 156.865, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 152.694, 27] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 156.865, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 140.182, 24] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 136.011, 23] + [ ecalVeto ] 0 : Hit 2: [-8.69618, 131.841, 22] + [ ecalVeto ] 0 : Hit 3: [-11.1041, 127.67, 21] + [ ecalVeto ] 0 : Hit 4: [-8.69618, 123.499, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 110.987, 19] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 106.817, 18] + [ ecalVeto ] 0 : Hit 2: [-11.1041, 102.646, 17] + [ ecalVeto ] 0 : Hit 3: [-8.69618, 98.4754, 16] + [ ecalVeto ] 0 : Hit 4: [-11.1041, 94.3048, 15] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 91.7545, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -85.9634, 16] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -81.7928, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 83.4132, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 79.2426, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 75.0719, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 70.9012, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 66.7306, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 119.329, 9] + [ ecalVeto ] 0 : Hit 1: [-52.039, 123.499, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5420.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3925 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 23] + [ ecalVeto ] 0 : Hit 1: [26.4873, 29.1946, 22] + [ ecalVeto ] 0 : Hit 2: [24.0793, 25.024, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 17] + [ ecalVeto ] 0 : Hit 4: [19.2635, 16.6826, 16] + [ ecalVeto ] 0 : Hit 5: [16.8555, 20.8533, 15] + [ ecalVeto ] 0 : Hit 6: [19.2635, 16.6826, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -45.8773, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [26.4873, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3286.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3926 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -45.8773, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6564; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3927 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -29.1946, 24] + [ ecalVeto ] 0 : Hit 1: [38.5269, -25.024, 23] + [ ecalVeto ] 0 : Hit 2: [40.9348, -20.8533, 22] + [ ecalVeto ] 0 : Hit 3: [38.5269, -16.6826, 21] + [ ecalVeto ] 0 : Hit 4: [40.9348, -12.512, 20] + [ ecalVeto ] 0 : Hit 5: [38.5269, -8.34132, 19] + [ ecalVeto ] 0 : Hit 6: [40.9348, -4.17066, 18] + [ ecalVeto ] 0 : Hit 7: [38.5269, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 8: [40.9348, 4.17066, 16] + [ ecalVeto ] 0 : Hit 9: [38.5269, 8.34132, 15] + [ ecalVeto ] 0 : Hit 10: [40.9348, 4.17066, 14] + [ ecalVeto ] 0 : Hit 11: [38.5269, 8.34132, 13] + [ ecalVeto ] 0 : Hit 12: [40.9348, 12.512, 12] + [ ecalVeto ] 0 : Hit 13: [38.5269, 16.6826, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [-130.565, 62.5599, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3039.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3928 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 18 + [ ecalVeto ] 0 : Beginning track merging using 18 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 16 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-173.908, -37.5359, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [61.6707, 73.4515, 16] + [ ecalVeto ] 0 : Hit 1: [59.2627, 69.2808, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, -12.512, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [54.4469, 69.2808, 14] + [ ecalVeto ] 0 : Hit 1: [52.9745, 66.7306, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [33.711, 58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 37.5359, 0] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [26.4873, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 50.0479, 7] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 6: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 7: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 6] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 16 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5596.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3929 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 19] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 18] + [ ecalVeto ] 0 : Hit 3: [2.40793, 62.5599, 17] + [ ecalVeto ] 0 : Hit 4: [4.81586, 66.7306, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 50.0479, 18] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 54.2186, 17] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 58.3892, 16] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 54.2186, 15] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 50.0479, 14] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 54.2186, 13] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 50.0479, 12] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 54.2186, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 54.2186, 14] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 50.0479, 13] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 45.8773, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 15] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 14] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 122 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7355.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3930 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4950.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3931 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7369.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3932 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [69.83, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [67.4221, 33.3653, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6702.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3933 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3684.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3934 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3663.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3935 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [94.4462, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [94.4462, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5983.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3936 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -41.7066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-101.67, -12.512, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -45.8773, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -41.7066, 8] + [ ecalVeto ] 0 : Hit 4: [-26.4873, -37.5359, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -45.8773, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6245.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3937 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -37.5359, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6330.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3938 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 18 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1666.45; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3939 Brem photon produced 71 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5405.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3940 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3456.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3941 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6855.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3942 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-152.237, 25.024, 28] + [ ecalVeto ] 0 : Hit 1: [-154.644, 29.1946, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, 54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [-137.789, 58.3892, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2822.71; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3943 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -41.7066, 18] + [ ecalVeto ] 0 : Hit 1: [45.7507, -37.5359, 17] + [ ecalVeto ] 0 : Hit 2: [48.1586, -33.3653, 16] + [ ecalVeto ] 0 : Hit 3: [45.7507, -29.1946, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [40.9348, -29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [38.5269, -33.3653, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2373.08; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3944 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, -140.182, 16] + [ ecalVeto ] 0 : Hit 1: [15.92, -136.011, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [18.3279, -123.499, 14] + [ ecalVeto ] 0 : Hit 1: [15.92, -119.329, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [11.1041, -102.646, 12] + [ ecalVeto ] 0 : Hit 1: [8.69618, -98.4754, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [18.3279, -106.817, 12] + [ ecalVeto ] 0 : Hit 1: [15.92, -102.646, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -75.0719, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -70.9012, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -62.5599, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -58.3892, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -54.2186, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -50.0479, 3] + [ ecalVeto ] 0 : Hit 5: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 6: [2.40793, -45.8773, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -50.0479, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -58.3892, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4374.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3945 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -45.8773, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -58.3892, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6559.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3946 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 169.377, 21] + [ ecalVeto ] 0 : Hit 1: [-52.039, 173.547, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5001.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3947 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [19.2635, 25.024, 4] + [ ecalVeto ] 0 : Hit 6: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -81.7928, 1] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -85.9634, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4903.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3948 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2749.24; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3949 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, -62.5599, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, -54.2186, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -45.8773, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4447.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3950 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6366.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3951 Brem photon produced 78 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 4] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 45.8773, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5654.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3952 Brem photon produced 77 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4182.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3953 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, 90.1341, 24] + [ ecalVeto ] 0 : Hit 1: [16.8555, 87.5839, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5546.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3954 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 77.6221, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5721.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3955 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7422.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3956 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 15 + [ ecalVeto ] 0 : Beginning track merging using 15 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, -4.17066, 27] + [ ecalVeto ] 0 : Hit 1: [-166.684, -2.36672e-14, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, -2.36672e-14, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, 4.17066, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -2.36672e-14, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, 4.17066, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-101.67, -4.17066, 20] + [ ecalVeto ] 0 : Hit 1: [-104.078, -2.36672e-14, 19] + [ ecalVeto ] 0 : Hit 2: [-101.67, 4.17066, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -2.36672e-14, 17] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -4.17066, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [-62.6062, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 3: [-60.1983, -4.17066, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -2.66454e-15, 13] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [-38.5269, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 5: [-40.9348, -4.17066, 9] + [ ecalVeto ] 0 : Hit 6: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Hit 7: [-38.5269, -8.34132, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 6: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [38.5269, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [38.5269, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9270.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3957 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 25] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [40.9348, 20.8533, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [33.711, -8.34132, 16] + [ ecalVeto ] 0 : Hit 2: [31.3031, -4.17066, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Hit 4: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5064.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3958 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, -106.817, 24] + [ ecalVeto ] 0 : Hit 1: [30.3676, -102.646, 23] + [ ecalVeto ] 0 : Hit 2: [32.7755, -98.4754, 22] + [ ecalVeto ] 0 : Hit 3: [30.3676, -94.3048, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, -85.9634, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, -83.4132, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -83.4132, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, -79.2426, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, -75.0719, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, -70.9012, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -62.5599, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -66.7306, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -62.5599, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -58.3892, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6347.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3959 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3225.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3960 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 102.646, 25] + [ ecalVeto ] 0 : Hit 1: [-52.039, 98.4754, 24] + [ ecalVeto ] 0 : Hit 2: [-54.4469, 94.3048, 23] + [ ecalVeto ] 0 : Hit 3: [-52.039, 90.1341, 22] + [ ecalVeto ] 0 : Hit 4: [-54.4469, 85.9634, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 77.6221, 20] + [ ecalVeto ] 0 : Hit 1: [-61.6707, 73.4515, 19] + [ ecalVeto ] 0 : Hit 2: [-59.2627, 69.2808, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 66.7306, 16] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 62.5599, 15] + [ ecalVeto ] 0 : Hit 3: [-52.9745, 58.3892, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 54.2186, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4938.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3961 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -77.6221, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5525.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3962 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1428.26; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3963 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 66.7306, 24] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 62.5599, 23] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 58.3892, 22] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 54.2186, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 50.0479, 19] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 45.8773, 18] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 41.7066, 17] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 37.5359, 16] + [ ecalVeto ] 0 : Hit 5: [-19.2635, 41.7066, 15] + [ ecalVeto ] 0 : Hit 6: [-16.8555, 37.5359, 14] + [ ecalVeto ] 0 : Hit 7: [-19.2635, 33.3653, 13] + [ ecalVeto ] 0 : Hit 8: [-16.8555, 29.1946, 12] + [ ecalVeto ] 0 : Hit 9: [-16.8555, 29.1946, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Hit 6: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Hit 7: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 1] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4660.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3964 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 20] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 18] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 17] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 15] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 14] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 16] + [ ecalVeto ] 0 : Hit 6: [4.81586, 41.7066, 14] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 13] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 9: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 10: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 11: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 12: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 13: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 14: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 15: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 16: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 11: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4235.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3965 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 65.1101, 1] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 69.2808, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4624.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3966 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -70.9012, 26] + [ ecalVeto ] 0 : Hit 1: [38.5269, -66.7306, 25] + [ ecalVeto ] 0 : Hit 2: [40.9348, -62.5599, 24] + [ ecalVeto ] 0 : Hit 3: [38.5269, -58.3892, 23] + [ ecalVeto ] 0 : Hit 4: [40.9348, -54.2186, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1923.27; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3967 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2949.08; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3968 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4633.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3969 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -156.865, 20] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -152.694, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6754.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3970 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -115.158, 21] + [ ecalVeto ] 0 : Hit 1: [-15.92, -119.329, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -110.987, 19] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -115.158, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 91.7545, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 95.9252, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4087.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3971 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, 131.841, 33] + [ ecalVeto ] 0 : Hit 1: [-145.948, 136.011, 32] + [ ecalVeto ] 0 : Hit 2: [-148.356, 131.841, 31] + [ ecalVeto ] 0 : Hit 3: [-145.948, 127.67, 30] + [ ecalVeto ] 0 : Hit 4: [-141.132, 127.67, 31] + [ ecalVeto ] 0 : Hit 5: [-138.725, 123.499, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, 115.158, 29] + [ ecalVeto ] 0 : Hit 1: [-131.501, 110.987, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-112.237, 85.9634, 25] + [ ecalVeto ] 0 : Hit 1: [-109.829, 81.7928, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3221.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3972 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-137.789, -58.3892, 22] + [ ecalVeto ] 0 : Hit 1: [-140.197, -54.2186, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, -50.0479, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, -58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, -54.2186, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-116.118, -54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [-118.525, -50.0479, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3679.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3973 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 22] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 21] + [ ecalVeto ] 0 : Hit 2: [4.81586, 66.7306, 20] + [ ecalVeto ] 0 : Hit 3: [2.40793, 62.5599, 19] + [ ecalVeto ] 0 : Hit 4: [4.81586, 58.3892, 18] + [ ecalVeto ] 0 : Hit 5: [2.40793, 54.2186, 17] + [ ecalVeto ] 0 : Hit 6: [4.81586, 50.0479, 16] + [ ecalVeto ] 0 : Hit 7: [2.40793, 45.8773, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -102.646, 6] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -98.4754, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -94.3048, 5] + [ ecalVeto ] 0 : Hit 1: [-52.039, -98.4754, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -81.7928, 5] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -77.6221, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2766.14; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3974 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6009.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3975 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, 58.3892, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Hit 4: [-33.711, -50.0479, 9] + [ ecalVeto ] 0 : Hit 5: [-33.711, -50.0479, 7] + [ ecalVeto ] 0 : Hit 6: [-31.3031, -54.2186, 6] + [ ecalVeto ] 0 : Hit 7: [-33.711, -58.3892, 5] + [ ecalVeto ] 0 : Hit 8: [-31.3031, -62.5599, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 2] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -70.9012, 1] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -75.0719, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4536.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3976 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-88.1579, 85.9634, 16] + [ ecalVeto ] 0 : Hit 1: [-90.5659, 81.7928, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-88.1579, 69.2808, 14] + [ ecalVeto ] 0 : Hit 1: [-90.5659, 73.4515, 13] + [ ecalVeto ] 0 : Hit 2: [-90.5659, 73.4515, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, 90.1341, 13] + [ ecalVeto ] 0 : Hit 1: [-102.606, 85.9634, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 45.8773, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-155.58, 102.646, 13] + [ ecalVeto ] 0 : Hit 1: [-153.172, 98.4754, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6318.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3977 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 62.5599, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [-48.1586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 4: [-45.7507, -45.8773, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [190.763, -66.7306, 6] + [ ecalVeto ] 0 : Hit 1: [188.356, -70.9012, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3399.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3978 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3191.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3979 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 94.3048, 24] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 90.1341, 23] + [ ecalVeto ] 0 : Hit 2: [-30.3676, 85.9634, 22] + [ ecalVeto ] 0 : Hit 3: [-32.7755, 81.7928, 21] + [ ecalVeto ] 0 : Hit 4: [-31.3031, 79.2426, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 14] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 45.8773, 13] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 41.7066, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6622.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3980 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [26.4873, 54.2186, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -20.8533, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5621.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3981 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, 102.646, 22] + [ ecalVeto ] 0 : Hit 1: [8.69618, 98.4754, 21] + [ ecalVeto ] 0 : Hit 2: [11.1041, 94.3048, 20] + [ ecalVeto ] 0 : Hit 3: [9.63173, 91.7545, 19] + [ ecalVeto ] 0 : Hit 4: [12.0397, 87.5839, 18] + [ ecalVeto ] 0 : Hit 5: [9.63173, 83.4132, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 83.4132, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, 79.2426, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, 75.0719, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, 70.9012, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, 66.7306, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, 62.5599, 11] + [ ecalVeto ] 0 : Hit 6: [4.81586, 58.3892, 10] + [ ecalVeto ] 0 : Hit 7: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1819.12; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3982 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, 41.7066, 29] + [ ecalVeto ] 0 : Hit 1: [-145.013, 37.5359, 28] + [ ecalVeto ] 0 : Hit 2: [-147.421, 41.7066, 27] + [ ecalVeto ] 0 : Hit 3: [-145.013, 37.5359, 26] + [ ecalVeto ] 0 : Hit 4: [-147.421, 41.7066, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, 33.3653, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, 33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, 29.1946, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [152.237, 58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [152.237, 58.3892, 17] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4055.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3983 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [60.1983, 37.5359, 25] + [ ecalVeto ] 0 : Hit 1: [62.6062, 33.3653, 24] + [ ecalVeto ] 0 : Hit 2: [60.1983, 29.1946, 23] + [ ecalVeto ] 0 : Hit 3: [62.6062, 25.024, 22] + [ ecalVeto ] 0 : Hit 4: [60.1983, 20.8533, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-145.013, 29.1946, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [52.9745, 8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [55.3824, 12.512, 18] + [ ecalVeto ] 0 : Hit 2: [52.9745, 8.34132, 17] + [ ecalVeto ] 0 : Hit 3: [55.3824, 12.512, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [48.1586, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 1: [45.7507, -4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [48.1586, -8.34132, 14] + [ ecalVeto ] 0 : Hit 3: [45.7507, -12.512, 13] + [ ecalVeto ] 0 : Hit 4: [48.1586, -8.34132, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-111.302, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3960.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3984 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 7: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Hit 8: [12.0397, -4.17066, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7157.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3985 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7335.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3986 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-130.565, 45.8773, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 3] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [30.3676, 202.742, 1] + [ ecalVeto ] 0 : Hit 1: [32.7755, 206.913, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5039.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3987 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4940.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3988 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4482.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3989 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6225.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3990 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [23.1438, 106.817, 17] + [ ecalVeto ] 0 : Hit 1: [25.5517, 110.987, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [54.4469, -69.2808, 16] + [ ecalVeto ] 0 : Hit 1: [52.9745, -66.7306, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [30.3676, 127.67, 15] + [ ecalVeto ] 0 : Hit 1: [32.7755, 123.499, 14] + [ ecalVeto ] 0 : Hit 2: [30.3676, 119.329, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5712.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3991 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, 144.353, 20] + [ ecalVeto ] 0 : Hit 1: [52.039, 140.182, 19] + [ ecalVeto ] 0 : Hit 2: [54.4469, 136.011, 18] + [ ecalVeto ] 0 : Hit 3: [52.039, 131.841, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [44.8152, 127.67, 17] + [ ecalVeto ] 0 : Hit 1: [47.2231, 123.499, 16] + [ ecalVeto ] 0 : Hit 2: [44.8152, 119.329, 15] + [ ecalVeto ] 0 : Hit 3: [39.9993, 119.329, 16] + [ ecalVeto ] 0 : Hit 4: [37.5914, 115.158, 15] + [ ecalVeto ] 0 : Hit 5: [39.9993, 110.987, 14] + [ ecalVeto ] 0 : Hit 6: [37.5914, 106.817, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6870.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3992 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, -4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 29.1946, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3936.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3993 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7575.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3994 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5688.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3995 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5411.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3996 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-173.908, -45.8773, 22] + [ ecalVeto ] 0 : Hit 1: [-176.316, -50.0479, 21] + [ ecalVeto ] 0 : Hit 2: [-173.908, -45.8773, 20] + [ ecalVeto ] 0 : Hit 3: [-176.316, -50.0479, 19] + [ ecalVeto ] 0 : Hit 4: [-173.908, -54.2186, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, -54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-137.789, -50.0479, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-116.118, -45.8773, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [133.909, -98.4754, 16] + [ ecalVeto ] 0 : Hit 1: [131.501, -94.3048, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-104.078, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, -45.8773, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [45.7507, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [48.1586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [45.7507, -45.8773, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5344.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3997 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [197.987, -62.5599, 22] + [ ecalVeto ] 0 : Hit 1: [195.579, -58.3892, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [8.69618, -123.499, 11] + [ ecalVeto ] 0 : Hit 1: [11.1041, -127.67, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3568.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3998 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6481.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 3999 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, 165.206, 33] + [ ecalVeto ] 0 : Hit 1: [-131.501, 169.377, 32] + [ ecalVeto ] 0 : Hit 2: [-133.909, 173.547, 31] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2329.92; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4000 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -29.1946, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 91.7545, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 91.7545, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 87.5839, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7138.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4001 Brem photon produced 81 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [26.4873, -4.17066, 2] + [ ecalVeto ] 0 : Hit 2: [24.0793, -8.34132, 1] + [ ecalVeto ] 0 : Hit 3: [26.4873, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4910.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4002 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 54.2186, 27] + [ ecalVeto ] 0 : Hit 1: [-108.894, 58.3892, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -79.2426, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -75.0719, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -75.0719, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -70.9012, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -66.7306, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -62.5599, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -58.3892, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2491.34; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4003 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [153.172, -140.182, 31] + [ ecalVeto ] 0 : Hit 1: [153.172, -140.182, 29] + [ ecalVeto ] 0 : Hit 2: [148.356, -140.182, 30] + [ ecalVeto ] 0 : Hit 3: [148.356, -140.182, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [119.461, -90.1341, 24] + [ ecalVeto ] 0 : Hit 1: [117.053, -85.9634, 23] + [ ecalVeto ] 0 : Hit 2: [119.461, -90.1341, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [148.356, -106.817, 22] + [ ecalVeto ] 0 : Hit 1: [145.948, -102.646, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [119.461, -81.7928, 20] + [ ecalVeto ] 0 : Hit 1: [119.461, -81.7928, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3853.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4004 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3662.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4005 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2840; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4006 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, 115.158, 26] + [ ecalVeto ] 0 : Hit 1: [30.3676, 110.987, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, 102.646, 24] + [ ecalVeto ] 0 : Hit 1: [23.1438, 98.4754, 23] + [ ecalVeto ] 0 : Hit 2: [25.5517, 94.3048, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8714.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4007 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 69.2808, 18] + [ ecalVeto ] 0 : Hit 1: [-61.6707, 65.1101, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 58.3892, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 54.2186, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 66.7306, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7122.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4008 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 16] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 15] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [9.63173, 58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, 58.3892, 16] + [ ecalVeto ] 0 : Hit 3: [2.40793, 54.2186, 15] + [ ecalVeto ] 0 : Hit 4: [4.81586, 50.0479, 14] + [ ecalVeto ] 0 : Hit 5: [2.40793, 45.8773, 13] + [ ecalVeto ] 0 : Hit 6: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6857.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4009 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-190.763, -50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-188.356, -45.8773, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-152.237, -25.024, 18] + [ ecalVeto ] 0 : Hit 1: [-154.644, -29.1946, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-176.316, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-173.908, -12.512, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-132.973, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-130.565, -29.1946, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-111.302, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-108.894, -25.024, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-161.868, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-159.46, 20.8533, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7369; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4010 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3616; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4011 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5265.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4012 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -62.5599, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6336.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4013 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 81.7928, 16] + [ ecalVeto ] 0 : Hit 2: [-39.9993, 77.6221, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -33.3653, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3546.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4014 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 20] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 19] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -45.8773, 18] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -41.7066, 17] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -37.5359, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3499.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4015 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.88031, 106.817, 18] + [ ecalVeto ] 0 : Hit 1: [3.34348, 102.646, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-130.565, -12.512, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 83.4132, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 79.2426, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 75.0719, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 70.9012, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6106.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4016 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [40.9348, 45.8773, 12] + [ ecalVeto ] 0 : Hit 2: [38.5269, 50.0479, 11] + [ ecalVeto ] 0 : Hit 3: [40.9348, 45.8773, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [19.2635, 25.024, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5124.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4017 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, -37.5359, 22] + [ ecalVeto ] 0 : Hit 1: [52.9745, -33.3653, 21] + [ ecalVeto ] 0 : Hit 2: [55.3824, -37.5359, 20] + [ ecalVeto ] 0 : Hit 3: [52.9745, -33.3653, 19] + [ ecalVeto ] 0 : Hit 4: [48.1586, -33.3653, 20] + [ ecalVeto ] 0 : Hit 5: [45.7507, -29.1946, 19] + [ ecalVeto ] 0 : Hit 6: [48.1586, -33.3653, 18] + [ ecalVeto ] 0 : Hit 7: [45.7507, -29.1946, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, 33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-145.013, 29.1946, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4278.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4018 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -123.499, 27] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -119.329, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -119.329, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -115.158, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 18] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 17] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 16] + [ ecalVeto ] 0 : Hit 4: [16.8555, 12.512, 15] + [ ecalVeto ] 0 : Hit 5: [19.2635, 8.34132, 14] + [ ecalVeto ] 0 : Hit 6: [16.8555, 4.17066, 13] + [ ecalVeto ] 0 : Hit 7: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 8: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 9: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 10: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -85.9634, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -75.0719, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -70.9012, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -58.3892, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 108 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5735.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4019 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4806.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4020 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, -81.7928, 24] + [ ecalVeto ] 0 : Hit 1: [88.1579, -77.6221, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [61.6707, -65.1101, 18] + [ ecalVeto ] 0 : Hit 1: [60.1983, -62.5599, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 62.5599, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6309.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4021 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -70.9012, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -66.7306, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4350.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4022 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [-108.894, -33.3653, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2709.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4023 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 1: [62.6062, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 2: [62.6062, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 3: [60.1983, -4.17066, 15] + [ ecalVeto ] 0 : Hit 4: [62.6062, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 5: [60.1983, -4.17066, 13] + [ ecalVeto ] 0 : Hit 6: [60.1983, -4.17066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [67.4221, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 1: [67.4221, -2.66454e-15, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 5: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 6: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Hit 7: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8364.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4024 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, 29.1946, 20] + [ ecalVeto ] 0 : Hit 1: [52.9745, 25.024, 19] + [ ecalVeto ] 0 : Hit 2: [55.3824, 29.1946, 18] + [ ecalVeto ] 0 : Hit 3: [52.9745, 25.024, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-62.6062, -8.34132, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [31.3031, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [33.711, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [31.3031, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [33.711, -33.3653, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5185.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4025 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -102.646, 9] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -106.817, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3877.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4026 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, -33.3653, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-87.2224, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-89.6303, 41.7066, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3278.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4027 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 83.4132, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 87.5839, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-73.7103, 60.9395, 8] + [ ecalVeto ] 0 : Hit 1: [-76.1183, 56.7688, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 121 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7062.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4028 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 15 + [ ecalVeto ] 0 : Beginning track merging using 15 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, 75.0719, 31] + [ ecalVeto ] 0 : Hit 1: [-159.46, 70.9012, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, 58.3892, 29] + [ ecalVeto ] 0 : Hit 1: [-145.013, 54.2186, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, 41.7066, 27] + [ ecalVeto ] 0 : Hit 1: [-130.565, 37.5359, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-118.525, 33.3653, 25] + [ ecalVeto ] 0 : Hit 1: [-116.118, 29.1946, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-111.302, 29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-94.4462, 16.6826, 20] + [ ecalVeto ] 0 : Hit 1: [-96.8541, 12.512, 19] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -2.66454e-15, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-125.749, -29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-123.341, -33.3653, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-111.302, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, -33.3653, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 14] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 12] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-69.83, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -8.34132, 12] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 8] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 8] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2685.51; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4029 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-226.882, -37.5359, 33] + [ ecalVeto ] 0 : Hit 1: [-224.475, -33.3653, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-190.763, -25.024, 29] + [ ecalVeto ] 0 : Hit 1: [-188.356, -20.8533, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-176.316, -16.6826, 27] + [ ecalVeto ] 0 : Hit 1: [-173.908, -20.8533, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-140.197, -12.512, 23] + [ ecalVeto ] 0 : Hit 1: [-137.789, -8.34132, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-125.749, -4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, -8.34132, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-111.302, -4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -2.36672e-14, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 8.34132, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1402.85; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4030 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [40.9348, 20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [38.5269, 25.024, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4348.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4031 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, 131.841, 17] + [ ecalVeto ] 0 : Hit 1: [-160.396, 127.67, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, 58.3892, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, 54.2186, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4526.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4032 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 5: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 9: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 10: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4929.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4033 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4345.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4034 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -50.0479, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -58.3892, 8] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -62.5599, 7] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -58.3892, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -45.8773, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -41.7066, 2] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -45.8773, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7849.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4035 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6237.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4036 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, 190.23, 27] + [ ecalVeto ] 0 : Hit 1: [-1.47238, 186.059, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-1.47238, 119.329, 20] + [ ecalVeto ] 0 : Hit 1: [-3.88031, 115.158, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4376.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4037 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -152.694, 28] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -148.523, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4440.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4038 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -136.011, 30] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -131.841, 29] + [ ecalVeto ] 0 : Hit 2: [-73.7103, -127.67, 28] + [ ecalVeto ] 0 : Hit 3: [-76.1183, -123.499, 27] + [ ecalVeto ] 0 : Hit 4: [-73.7103, -119.329, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -110.987, 25] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -115.158, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -106.817, 23] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -102.646, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [-45.7507, -54.2186, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -41.7066, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [76.1183, 56.7688, 12] + [ ecalVeto ] 0 : Hit 1: [74.6459, 54.2186, 11] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [62.6062, 50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [60.1983, 45.8773, 9] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3311.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4039 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2473.73; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4040 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, 144.353, 26] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 140.182, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 123.499, 23] + [ ecalVeto ] 0 : Hit 1: [-15.92, 119.329, 22] + [ ecalVeto ] 0 : Hit 2: [-18.3279, 115.158, 21] + [ ecalVeto ] 0 : Hit 3: [-15.92, 110.987, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 98.4754, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -50.0479, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5888.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4041 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, -52.5982, 18] + [ ecalVeto ] 0 : Hit 1: [81.8697, -50.0479, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2120.84; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4042 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [60.1983, 54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [60.1983, 54.2186, 21] + [ ecalVeto ] 0 : Hit 2: [62.6062, 50.0479, 20] + [ ecalVeto ] 0 : Hit 3: [60.1983, 45.8773, 19] + [ ecalVeto ] 0 : Hit 4: [62.6062, 50.0479, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, 54.2186, 22] + [ ecalVeto ] 0 : Hit 1: [55.3824, 54.2186, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3229.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4043 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 20 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2976.49; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4044 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4044 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, 85.9634, 28] + [ ecalVeto ] 0 : Hit 1: [80.9341, 81.7928, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5380.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4045 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 69.2808, 11] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 65.1101, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-130.565, -29.1946, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6658.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4046 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 70.9012, 25] + [ ecalVeto ] 0 : Hit 1: [4.81586, 66.7306, 24] + [ ecalVeto ] 0 : Hit 2: [2.40793, 62.5599, 23] + [ ecalVeto ] 0 : Hit 3: [4.81586, 58.3892, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 18] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 17] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 16] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 15] + [ ecalVeto ] 0 : Hit 5: [12.0397, 20.8533, 14] + [ ecalVeto ] 0 : Hit 6: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4374.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4047 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 15] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4195.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4048 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -50.0479, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -54.2186, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -50.0479, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-33.711, -25.024, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-38.5269, 8.34132, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6977.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4049 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [69.83, 29.1946, 26] + [ ecalVeto ] 0 : Hit 1: [67.4221, 25.024, 25] + [ ecalVeto ] 0 : Hit 2: [69.83, 20.8533, 24] + [ ecalVeto ] 0 : Hit 3: [67.4221, 16.6826, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [62.6062, 16.6826, 22] + [ ecalVeto ] 0 : Hit 1: [60.1983, 12.512, 21] + [ ecalVeto ] 0 : Hit 2: [62.6062, 8.34132, 20] + [ ecalVeto ] 0 : Hit 3: [60.1983, 4.17066, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5968.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4050 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -41.7066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5012.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4051 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.88031, 115.158, 22] + [ ecalVeto ] 0 : Hit 1: [3.34348, 110.987, 21] + [ ecalVeto ] 0 : Hit 2: [3.88031, 106.817, 20] + [ ecalVeto ] 0 : Hit 3: [3.34348, 102.646, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 87.5839, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, 83.4132, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, 79.2426, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, 75.0719, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, -62.5599, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, -50.0479, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4114.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4052 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4328.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4053 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 11] + [ ecalVeto ] 0 : Hit 3: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 4: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 7: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, -54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, -50.0479, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -45.8773, 11] + [ ecalVeto ] 0 : Hit 3: [16.8555, -45.8773, 9] + [ ecalVeto ] 0 : Hit 4: [9.63173, -50.0479, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 7: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 8: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5976.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4054 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6771.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4055 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -119.329, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -115.158, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -106.817, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -102.646, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -94.3048, 15] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -90.1341, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -73.4515, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -69.2808, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4938.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4056 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5119.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4057 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5472.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4058 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -37.5359, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -65.1101, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -60.9395, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -41.7066, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5601.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4059 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 15 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3639.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4060 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 114 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6315.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4061 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [15.92, 94.3048, 21] + [ ecalVeto ] 0 : Hit 1: [18.3279, 90.1341, 20] + [ ecalVeto ] 0 : Hit 2: [16.8555, 87.5839, 19] + [ ecalVeto ] 0 : Hit 3: [19.2635, 83.4132, 18] + [ ecalVeto ] 0 : Hit 4: [16.8555, 79.2426, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [68.8945, 60.9395, 18] + [ ecalVeto ] 0 : Hit 1: [67.4221, 58.3892, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, 4.17066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 66.7306, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 62.5599, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 58.3892, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, 54.2186, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 50.0479, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [40.9348, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [38.5269, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [38.5269, 41.7066, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7228.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4062 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-152.237, 8.34132, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -2.36672e-14, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3625.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4063 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [37.5914, -98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [39.9993, -94.3048, 20] + [ ecalVeto ] 0 : Hit 2: [37.5914, -98.4754, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [32.7755, -90.1341, 18] + [ ecalVeto ] 0 : Hit 1: [30.3676, -94.3048, 17] + [ ecalVeto ] 0 : Hit 2: [32.7755, -90.1341, 16] + [ ecalVeto ] 0 : Hit 3: [30.3676, -85.9634, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [25.5517, -85.9634, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -83.4132, 13] + [ ecalVeto ] 0 : Hit 2: [25.5517, -85.9634, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3087.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4064 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-205.211, -41.7066, 33] + [ ecalVeto ] 0 : Hit 1: [-202.803, -45.8773, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-169.092, -62.5599, 27] + [ ecalVeto ] 0 : Hit 1: [-166.684, -58.3892, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-154.644, -62.5599, 25] + [ ecalVeto ] 0 : Hit 1: [-152.237, -66.7306, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-140.197, -62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-137.789, -66.7306, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-125.749, -62.5599, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, -66.7306, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-111.302, -62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, -58.3892, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4047.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4065 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, -70.9012, 25] + [ ecalVeto ] 0 : Hit 1: [-137.789, -66.7306, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, -54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, -50.0479, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, -41.7066, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -25.024, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2425.17; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4066 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3380.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4067 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 15 + [ ecalVeto ] 0 : Beginning track merging using 15 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-148.356, 115.158, 29] + [ ecalVeto ] 0 : Hit 1: [-145.948, 110.987, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, 106.817, 27] + [ ecalVeto ] 0 : Hit 1: [-131.501, 102.646, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-119.461, 90.1341, 25] + [ ecalVeto ] 0 : Hit 1: [-117.053, 85.9634, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-105.013, 81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-102.606, 77.6221, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [112.237, -94.3048, 22] + [ ecalVeto ] 0 : Hit 1: [109.829, -90.1341, 21] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 73.4515, 21] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 69.2808, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [105.013, -81.7928, 20] + [ ecalVeto ] 0 : Hit 1: [102.606, -77.6221, 19] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 65.1101, 18] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [97.7897, -77.6221, 18] + [ ecalVeto ] 0 : Hit 1: [95.3817, -73.4515, 17] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 58.3892, 16] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 14] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5674.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4068 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3794.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4069 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2831.18; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4070 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 21] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 18] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 17] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 16] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 15] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 14] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 10: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -131.841, 9] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -136.011, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2984.2; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4071 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 22] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 21] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 20] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 19] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 17] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 16] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 7: [9.63173, -2.66454e-15, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1537.61; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4072 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -106.817, 19] + [ ecalVeto ] 0 : Hit 1: [-102.606, -102.646, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -94.3048, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -73.4515, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -69.2808, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -66.7306, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -54.2186, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6213.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4073 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-123.341, -41.7066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 1] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4843.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4074 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 79.2426, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 75.0719, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 70.9012, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 66.7306, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 62.5599, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [26.4873, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6362.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4075 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [162.804, -140.182, 30] + [ ecalVeto ] 0 : Hit 1: [160.396, -136.011, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [112.237, -110.987, 22] + [ ecalVeto ] 0 : Hit 1: [109.829, -106.817, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2298.03; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4076 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-155.58, 94.3048, 11] + [ ecalVeto ] 0 : Hit 1: [-153.172, 90.1341, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 3] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 70.9012, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5248; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4077 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-87.2224, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-89.6303, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-87.2224, -29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-89.6303, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-96.8541, -29.1946, 9] + [ ecalVeto ] 0 : Hit 5: [-94.4462, -33.3653, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5457.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4078 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, 58.3892, 25] + [ ecalVeto ] 0 : Hit 1: [-159.46, 54.2186, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, 50.0479, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, 54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, 50.0479, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 109 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5796.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4079 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 10: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Hit 11: [4.81586, -2.66454e-15, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 144 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5158.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4080 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.039, -115.158, 17] + [ ecalVeto ] 0 : Hit 1: [54.4469, -110.987, 16] + [ ecalVeto ] 0 : Hit 2: [52.039, -106.817, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4255.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4081 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.039, 131.841, 31] + [ ecalVeto ] 0 : Hit 1: [54.4469, 136.011, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 62.5599, 22] + [ ecalVeto ] 0 : Hit 1: [-33.711, 58.3892, 21] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 54.2186, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [38.5269, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [40.9348, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [38.5269, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 4: [40.9348, -4.17066, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4580.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4082 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 37.5359, 13] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 33.3653, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2266.63; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4083 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5235.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4084 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -66.7306, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5453.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4085 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 6: [4.81586, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6362.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4086 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4086 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 20] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 19] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7571.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4087 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [-69.83, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9901.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4088 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-169.092, 87.5839, 17] + [ ecalVeto ] 0 : Hit 1: [-166.684, 83.4132, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 7: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 8: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 1] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4311.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4089 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [48.1586, -50.0479, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, -29.1946, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4815.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4090 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 7: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [26.4873, -45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [24.0793, -41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2549.49; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4091 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4978.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4092 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5263.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4093 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2443.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4094 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -54.2186, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6449.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4095 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-166.684, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-169.092, -29.1946, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -69.2808, 5] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -73.4515, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4147.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4096 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 54.2186, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 50.0479, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8526.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4097 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-124.277, -173.547, 32] + [ ecalVeto ] 0 : Hit 1: [-126.685, -169.377, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, -165.206, 31] + [ ecalVeto ] 0 : Hit 1: [-117.053, -161.035, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -136.011, 27] + [ ecalVeto ] 0 : Hit 1: [-52.039, -140.182, 26] + [ ecalVeto ] 0 : Hit 2: [-54.4469, -136.011, 25] + [ ecalVeto ] 0 : Hit 3: [-52.039, -131.841, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-80.9341, -123.499, 26] + [ ecalVeto ] 0 : Hit 1: [-83.3421, -127.67, 25] + [ ecalVeto ] 0 : Hit 2: [-80.9341, -123.499, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-52.039, -98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -94.3048, 19] + [ ecalVeto ] 0 : Hit 2: [-52.039, -90.1341, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2834.45; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4098 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, 110.987, 19] + [ ecalVeto ] 0 : Hit 1: [32.7755, 106.817, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [30.3676, 94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [32.7755, 90.1341, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [-26.4873, 20.8533, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2558.61; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4099 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -58.3892, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -62.5599, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6047.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4100 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -215.254, 29] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -211.083, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 75.0719, 18] + [ ecalVeto ] 0 : Hit 1: [31.3031, 70.9012, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 54.2186, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 50.0479, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2015.01; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4101 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 6: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 8: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3178.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4102 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4533.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4103 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -62.5599, 1] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -66.7306, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8564.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4104 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 17 + [ ecalVeto ] 0 : Beginning track merging using 17 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 16 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, 50.0479, 27] + [ ecalVeto ] 0 : Hit 1: [-145.013, 45.8773, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, -25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-145.013, -20.8533, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, 45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, 41.7066, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [169.092, -62.5599, 22] + [ ecalVeto ] 0 : Hit 1: [166.684, -58.3892, 21] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-111.302, 37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, 33.3653, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-132.973, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, -20.8533, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-140.197, -29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-137.789, -33.3653, 20] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [154.644, -54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [152.237, -50.0479, 19] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [-33.711, 41.7066, 15] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -8.34132, 14] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [-33.711, 33.3653, 11] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -8.34132, 12] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 11] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 10] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Hit 4: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 16 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4080.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4105 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, -119.329, 20] + [ ecalVeto ] 0 : Hit 1: [8.69618, -115.158, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [3.88031, -106.817, 18] + [ ecalVeto ] 0 : Hit 1: [3.34348, -102.646, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -91.7545, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -87.5839, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5166.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4106 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 25] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 24] + [ ecalVeto ] 0 : Hit 2: [2.40793, -54.2186, 23] + [ ecalVeto ] 0 : Hit 3: [4.81586, -50.0479, 22] + [ ecalVeto ] 0 : Hit 4: [2.40793, -45.8773, 21] + [ ecalVeto ] 0 : Hit 5: [4.81586, -41.7066, 20] + [ ecalVeto ] 0 : Hit 6: [2.40793, -45.8773, 19] + [ ecalVeto ] 0 : Hit 7: [4.81586, -41.7066, 18] + [ ecalVeto ] 0 : Hit 8: [2.40793, -37.5359, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 13] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 12] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4559.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4107 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5406.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4108 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5202.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4109 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 17 + [ ecalVeto ] 0 : Beginning track merging using 17 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 17 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, -66.7306, 29] + [ ecalVeto ] 0 : Hit 1: [-145.013, -62.5599, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -79.2426, 27] + [ ecalVeto ] 0 : Hit 1: [4.81586, -75.0719, 26] + [ ecalVeto ] 0 : Hit 2: [2.40793, -70.9012, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -87.5839, 25] + [ ecalVeto ] 0 : Hit 1: [19.2635, -83.4132, 24] + [ ecalVeto ] 0 : Hit 2: [16.8555, -79.2426, 23] + [ ecalVeto ] 0 : Hit 3: [19.2635, -75.0719, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-125.749, -54.2186, 25] + [ ecalVeto ] 0 : Hit 1: [-123.341, -50.0479, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-111.302, -45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, -41.7066, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-104.078, -33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, -37.5359, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -29.1946, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 18] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 17] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 16] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [24.0793, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [26.4873, -45.8773, 16] + [ ecalVeto ] 0 : Hit 2: [24.0793, -41.7066, 15] + [ ecalVeto ] 0 : Hit 3: [26.4873, -37.5359, 14] + [ ecalVeto ] 0 : Hit 4: [24.0793, -33.3653, 13] + [ ecalVeto ] 0 : Hit 5: [26.4873, -29.1946, 12] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -2.36672e-14, 16] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 90.1341, 16] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 14] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 12] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 11] + [ ecalVeto ] 0 : Hit 3: [19.2635, -16.6826, 10] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 17 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5041.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4110 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [40.9348, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [38.5269, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [40.9348, -4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [31.3031, -4.17066, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 125 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6357.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4111 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3620.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4112 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8101.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4113 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 16 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1641.09; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4114 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -62.5599, 25] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 24] + [ ecalVeto ] 0 : Hit 2: [-40.9348, -62.5599, 23] + [ ecalVeto ] 0 : Hit 3: [-38.5269, -58.3892, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [26.4873, 37.5359, 20] + [ ecalVeto ] 0 : Hit 2: [24.0793, 41.7066, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 20] + [ ecalVeto ] 0 : Hit 2: [-33.711, -50.0479, 19] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -54.2186, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 16] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -45.8773, 15] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -41.7066, 14] + [ ecalVeto ] 0 : Hit 4: [-26.4873, -45.8773, 13] + [ ecalVeto ] 0 : Hit 5: [-24.0793, -41.7066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 14] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4583.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4115 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [-55.3824, -54.2186, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5715.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4116 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 29.1946, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4976.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4117 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -45.8773, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2214.24; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4118 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3724.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4119 Brem photon produced 94 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 94.3048, 1] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 98.4754, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4362.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4120 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 94.3048, 29] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 90.1341, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 81.7928, 27] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 77.6221, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 69.2808, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 65.1101, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -12.512, 11] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -8.34132, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [16.8555, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -12.512, 7] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6153.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4121 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5600.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4122 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 14 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, -37.5359, 29] + [ ecalVeto ] 0 : Hit 1: [-123.341, -33.3653, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -29.1946, 27] + [ ecalVeto ] 0 : Hit 1: [-108.894, -25.024, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -4.17066, 18] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -8.34132, 17] + [ ecalVeto ] 0 : Hit 2: [-60.1983, -12.512, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 16] + [ ecalVeto ] 0 : Hit 2: [-74.6459, -29.1946, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 12] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 10] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 14 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3461.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4123 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 69.2808, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 65.1101, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 65.1101, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 62.5599, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4360.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4124 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, -127.67, 22] + [ ecalVeto ] 0 : Hit 1: [23.1438, -123.499, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -69.2808, 14] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -65.1101, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -66.7306, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -62.5599, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [-52.039, -73.4515, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4861.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4125 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -62.5599, 24] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -58.3892, 23] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -54.2186, 22] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -50.0479, 21] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -45.8773, 20] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -50.0479, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 18] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -41.7066, 17] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 16] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 15] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 14] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2876.08; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4126 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 110.987, 20] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 106.817, 19] + [ ecalVeto ] 0 : Hit 2: [-30.3676, 102.646, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 79.2426, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 75.0719, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10369.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4127 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5006.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4128 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 12] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 110.987, 13] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 106.817, 12] + [ ecalVeto ] 0 : Hit 2: [-39.9993, 102.646, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5059.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4129 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [190.763, 83.4132, 26] + [ ecalVeto ] 0 : Hit 1: [188.356, 79.2426, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [147.421, 66.7306, 18] + [ ecalVeto ] 0 : Hit 1: [145.013, 62.5599, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, 131.841, 13] + [ ecalVeto ] 0 : Hit 1: [-102.606, 127.67, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4434.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4130 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-89.6303, 33.3653, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Hit 5: [9.63173, -2.66454e-15, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7639.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4131 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.34348, -119.329, 19] + [ ecalVeto ] 0 : Hit 1: [3.88031, -115.158, 18] + [ ecalVeto ] 0 : Hit 2: [3.34348, -110.987, 17] + [ ecalVeto ] 0 : Hit 3: [3.88031, -106.817, 16] + [ ecalVeto ] 0 : Hit 4: [3.34348, -102.646, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -29.1946, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3170.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4132 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6817.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4133 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-117.053, -77.6221, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7161.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4134 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.039, -106.817, 31] + [ ecalVeto ] 0 : Hit 1: [54.4469, -102.646, 30] + [ ecalVeto ] 0 : Hit 2: [52.039, -98.4754, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, -33.3653, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 58.3892, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 62.5599, 10] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 58.3892, 9] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 54.2186, 8] + [ ecalVeto ] 0 : Hit 6: [-19.2635, 50.0479, 7] + [ ecalVeto ] 0 : Hit 7: [-16.8555, 45.8773, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-183.54, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-181.132, 50.0479, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3440.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4135 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4135 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, 181.889, 23] + [ ecalVeto ] 0 : Hit 1: [11.1041, 177.718, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [11.1041, 161.035, 20] + [ ecalVeto ] 0 : Hit 1: [8.69618, 156.865, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [11.1041, 144.353, 18] + [ ecalVeto ] 0 : Hit 1: [8.69618, 140.182, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -12.512, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, -4.17066, 12] + [ ecalVeto ] 0 : Hit 4: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-15.92, 110.987, 6] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 106.817, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 111 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4767.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4136 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-162.804, 115.158, 19] + [ ecalVeto ] 0 : Hit 1: [-160.396, 110.987, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, -29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 11] + [ ecalVeto ] 0 : Hit 4: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Hit 5: [19.2635, -25.024, 10] + [ ecalVeto ] 0 : Hit 6: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 7: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 8: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 9: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-69.83, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [-67.4221, -41.7066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -41.7066, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-87.2224, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-89.6303, -41.7066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4515.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4137 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4633.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4138 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, -50.0479, 27] + [ ecalVeto ] 0 : Hit 1: [69.83, -54.2186, 26] + [ ecalVeto ] 0 : Hit 2: [67.4221, -50.0479, 25] + [ ecalVeto ] 0 : Hit 3: [69.83, -45.8773, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, -37.5359, 22] + [ ecalVeto ] 0 : Hit 1: [52.9745, -33.3653, 21] + [ ecalVeto ] 0 : Hit 2: [55.3824, -29.1946, 20] + [ ecalVeto ] 0 : Hit 3: [52.9745, -25.024, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4980.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4139 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-160.396, 169.377, 28] + [ ecalVeto ] 0 : Hit 1: [-162.804, 165.206, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, 110.987, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, 106.817, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-95.3817, 90.1341, 18] + [ ecalVeto ] 0 : Hit 1: [-97.7897, 94.3048, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 69.2808, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 65.1101, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 62.5599, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4481.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4140 Brem photon produced 89 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -144.353, 9] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -148.523, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -70.9012, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, -66.7306, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5239.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4141 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, 25.024, 24] + [ ecalVeto ] 0 : Hit 1: [60.1983, 29.1946, 23] + [ ecalVeto ] 0 : Hit 2: [62.6062, 25.024, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [38.5269, 16.6826, 17] + [ ecalVeto ] 0 : Hit 2: [40.9348, 20.8533, 16] + [ ecalVeto ] 0 : Hit 3: [38.5269, 16.6826, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3800.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4142 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [59.2627, 77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [59.2627, 77.6221, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [47.2231, 73.4515, 16] + [ ecalVeto ] 0 : Hit 1: [45.7507, 70.9012, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [48.1586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [48.1586, 33.3653, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [40.9348, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [38.5269, 8.34132, 3] + [ ecalVeto ] 0 : Hit 2: [40.9348, 12.512, 2] + [ ecalVeto ] 0 : Hit 3: [38.5269, 8.34132, 1] + [ ecalVeto ] 0 : Hit 4: [40.9348, 12.512, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6291.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4143 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 66.7306, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [23.1438, -173.547, 11] + [ ecalVeto ] 0 : Hit 1: [25.5517, -169.377, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4828.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4144 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 8: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 9: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3120.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4145 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 18] + [ ecalVeto ] 0 : Hit 2: [-96.8541, -37.5359, 17] + [ ecalVeto ] 0 : Hit 3: [-94.4462, -41.7066, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [45.7507, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [45.7507, -20.8533, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [33.711, -8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, -16.6826, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6978.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4146 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 81.7928, 25] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 77.6221, 24] + [ ecalVeto ] 0 : Hit 2: [-47.2231, 73.4515, 23] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 70.9012, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 54.2186, 18] + [ ecalVeto ] 0 : Hit 1: [-33.711, 50.0479, 17] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 45.8773, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3609.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4147 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, 94.3048, 27] + [ ecalVeto ] 0 : Hit 1: [32.7755, 90.1341, 26] + [ ecalVeto ] 0 : Hit 2: [32.7755, 90.1341, 24] + [ ecalVeto ] 0 : Hit 3: [32.7755, 90.1341, 22] + [ ecalVeto ] 0 : Hit 4: [30.3676, 85.9634, 21] + [ ecalVeto ] 0 : Hit 5: [32.7755, 90.1341, 20] + [ ecalVeto ] 0 : Hit 6: [30.3676, 85.9634, 19] + [ ecalVeto ] 0 : Hit 7: [32.7755, 81.7928, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, -58.3892, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, -54.2186, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -41.7066, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 66.7306, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3161.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4148 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 85.9634, 11] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 81.7928, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3369.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4149 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [126.685, 85.9634, 30] + [ ecalVeto ] 0 : Hit 1: [124.277, 81.7928, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [90.5659, 65.1101, 24] + [ ecalVeto ] 0 : Hit 1: [88.1579, 60.9395, 23] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4629.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4150 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -140.182, 25] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -144.353, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -90.1341, 16] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -85.9634, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 13] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 11] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [24.0793, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5985.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4151 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -65.1101, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -62.5599, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4599.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4152 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, -8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-116.118, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3388.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4153 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -77.6221, 9] + [ ecalVeto ] 0 : Hit 1: [-52.039, -73.4515, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -54.2186, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 21 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4108.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4154 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [73.7103, 161.035, 33] + [ ecalVeto ] 0 : Hit 1: [76.1183, 156.865, 32] + [ ecalVeto ] 0 : Hit 2: [73.7103, 152.694, 31] + [ ecalVeto ] 0 : Hit 3: [76.1183, 148.523, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [66.4865, 140.182, 29] + [ ecalVeto ] 0 : Hit 1: [68.8945, 136.011, 28] + [ ecalVeto ] 0 : Hit 2: [66.4865, 131.841, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [54.4469, 110.987, 24] + [ ecalVeto ] 0 : Hit 1: [52.039, 106.817, 23] + [ ecalVeto ] 0 : Hit 2: [54.4469, 102.646, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, 66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 62.5599, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -8.34132, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9611.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4155 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4854.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4156 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -58.3892, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -54.2186, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -58.3892, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, -54.2186, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6013.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4157 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 17 + [ ecalVeto ] 0 : Beginning track merging using 17 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 16 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 25] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [137.789, 16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [140.197, 20.8533, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [132.973, 16.6826, 20] + [ ecalVeto ] 0 : Hit 1: [130.565, 12.512, 19] + [ ecalVeto ] 0 : Hit 2: [132.973, 16.6826, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [123.341, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [125.749, 12.512, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [97.7897, 77.6221, 16] + [ ecalVeto ] 0 : Hit 1: [95.3817, 73.4515, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [116.118, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [118.525, 8.34132, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [111.302, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [108.894, 8.34132, 13] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 10: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 11: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 12: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 7: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 8: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 9: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 10: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 11: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 12: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 13: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [62.6062, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [60.1983, 37.5359, 9] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [48.1586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [45.7507, 29.1946, 7] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 16 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7644.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4158 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [197.987, 12.512, 16] + [ ecalVeto ] 0 : Hit 1: [195.579, 16.6826, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5367.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4159 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-212.435, -29.1946, 33] + [ ecalVeto ] 0 : Hit 1: [-210.027, -25.024, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-176.316, -25.024, 29] + [ ecalVeto ] 0 : Hit 1: [-173.908, -29.1946, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, -29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, -25.024, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, -29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, -33.3653, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [16.8555, -20.8533, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, -4.17066, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5875.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4160 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, 110.987, 20] + [ ecalVeto ] 0 : Hit 1: [8.69618, 106.817, 19] + [ ecalVeto ] 0 : Hit 2: [11.1041, 102.646, 18] + [ ecalVeto ] 0 : Hit 3: [8.69618, 98.4754, 17] + [ ecalVeto ] 0 : Hit 4: [11.1041, 94.3048, 16] + [ ecalVeto ] 0 : Hit 5: [9.63173, 91.7545, 15] + [ ecalVeto ] 0 : Hit 6: [12.0397, 87.5839, 14] + [ ecalVeto ] 0 : Hit 7: [9.63173, 83.4132, 13] + [ ecalVeto ] 0 : Hit 8: [12.0397, 79.2426, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 62.5599, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 58.3892, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 2] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4570.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4161 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, -41.7066, 29] + [ ecalVeto ] 0 : Hit 1: [-145.013, -37.5359, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, -41.7066, 27] + [ ecalVeto ] 0 : Hit 1: [-130.565, -37.5359, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [-116.118, -37.5359, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-154.644, 87.5839, 23] + [ ecalVeto ] 0 : Hit 1: [-152.237, 83.4132, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-118.525, 66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 62.5599, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -33.3653, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6786.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4162 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -227.766, 33] + [ ecalVeto ] 0 : Hit 1: [-52.039, -223.595, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3562.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4163 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -131.841, 21] + [ ecalVeto ] 0 : Hit 1: [-15.92, -127.67, 20] + [ ecalVeto ] 0 : Hit 2: [-15.92, -127.67, 18] + [ ecalVeto ] 0 : Hit 3: [-11.1041, -127.67, 19] + [ ecalVeto ] 0 : Hit 4: [-11.1041, -127.67, 17] + [ ecalVeto ] 0 : Hit 5: [-8.69618, -123.499, 16] + [ ecalVeto ] 0 : Hit 6: [-8.69618, -123.499, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -83.4132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -79.2426, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -79.2426, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7183.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4164 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4220.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4165 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 25.024, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -77.6221, 3] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -73.4515, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5080.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4166 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5130.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4167 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3003.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4168 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5155.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4169 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1066.28; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4170 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 16 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2598.93; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4171 Brem photon produced 97 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 8: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 9: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 10: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 11: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 12: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3970.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4172 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -181.889, 33] + [ ecalVeto ] 0 : Hit 1: [-117.053, -177.718, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, -169.377, 31] + [ ecalVeto ] 0 : Hit 1: [-109.829, -165.206, 30] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, -140.182, 27] + [ ecalVeto ] 0 : Hit 1: [-102.606, -136.011, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -119.329, 25] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -115.158, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -106.817, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -102.646, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -94.3048, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -90.1341, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 17] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -77.6221, 18] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -65.1101, 16] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3338.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4173 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2424.79; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4174 Brem photon produced 75 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4146.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4175 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3298.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4176 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -211.083, 25] + [ ecalVeto ] 0 : Hit 1: [-52.039, -215.254, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, -62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [-152.237, -58.3892, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4864.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4177 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [33.711, -41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [31.3031, -37.5359, 11] + [ ecalVeto ] 0 : Hit 3: [33.711, -41.7066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 50.0479, 2] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 45.8773, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6806.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4178 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [126.685, -94.3048, 26] + [ ecalVeto ] 0 : Hit 1: [124.277, -90.1341, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [119.461, -81.7928, 24] + [ ecalVeto ] 0 : Hit 1: [117.053, -77.6221, 23] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11066.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4179 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3815.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4180 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, 119.329, 18] + [ ecalVeto ] 0 : Hit 1: [80.9341, 115.158, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [54.4469, 85.9634, 10] + [ ecalVeto ] 0 : Hit 1: [54.4469, 85.9634, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [26.4873, 45.8773, 4] + [ ecalVeto ] 0 : Hit 2: [33.711, 50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [31.3031, 54.2186, 5] + [ ecalVeto ] 0 : Hit 4: [33.711, 50.0479, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [33.711, 58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [31.3031, 62.5599, 5] + [ ecalVeto ] 0 : Hit 2: [33.711, 58.3892, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4879.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4181 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, -54.2186, 29] + [ ecalVeto ] 0 : Hit 1: [-152.237, -50.0479, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, -8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [-145.013, -4.17066, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 20.8533, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 8.34132, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2595.4; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4182 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4694.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4183 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4183 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -16.6826, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 8.34132, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-74.6459, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-77.0538, 8.34132, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6721.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4184 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -110.987, 23] + [ ecalVeto ] 0 : Hit 1: [-52.039, -106.817, 22] + [ ecalVeto ] 0 : Hit 2: [-54.4469, -102.646, 21] + [ ecalVeto ] 0 : Hit 3: [-52.039, -98.4754, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -90.1341, 19] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -94.3048, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -79.2426, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3959.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4185 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4185 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -37.5359, 24] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -41.7066, 23] + [ ecalVeto ] 0 : Hit 2: [-60.1983, -37.5359, 22] + [ ecalVeto ] 0 : Hit 3: [-62.6062, -33.3653, 21] + [ ecalVeto ] 0 : Hit 4: [-62.6062, -33.3653, 19] + [ ecalVeto ] 0 : Hit 5: [-67.4221, -33.3653, 20] + [ ecalVeto ] 0 : Hit 6: [-69.83, -37.5359, 19] + [ ecalVeto ] 0 : Hit 7: [-67.4221, -41.7066, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4527.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4186 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.039, -81.7928, 16] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -77.6221, 15] + [ ecalVeto ] 0 : Hit 2: [-52.039, -81.7928, 14] + [ ecalVeto ] 0 : Hit 3: [-54.4469, -77.6221, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-148.356, 156.865, 15] + [ ecalVeto ] 0 : Hit 1: [-148.356, 156.865, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3865.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4187 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 729.494; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4188 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 56.7688, 27] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 52.5982, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4889.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4189 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, 140.182, 30] + [ ecalVeto ] 0 : Hit 1: [59.2627, 144.353, 29] + [ ecalVeto ] 0 : Hit 2: [61.6707, 140.182, 28] + [ ecalVeto ] 0 : Hit 3: [59.2627, 144.353, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [54.4469, 144.353, 26] + [ ecalVeto ] 0 : Hit 1: [52.039, 140.182, 25] + [ ecalVeto ] 0 : Hit 2: [54.4469, 144.353, 24] + [ ecalVeto ] 0 : Hit 3: [52.039, 140.182, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [47.2231, 140.182, 22] + [ ecalVeto ] 0 : Hit 1: [44.8152, 136.011, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [39.9993, 127.67, 20] + [ ecalVeto ] 0 : Hit 1: [37.5914, 123.499, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 102.646, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 98.4754, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 85.9634, 15] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 81.7928, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-148.356, 90.1341, 11] + [ ecalVeto ] 0 : Hit 1: [-145.948, 94.3048, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, 79.2426, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 75.0719, 9] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 7] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4990.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4190 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -165.206, 29] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -161.035, 28] + [ ecalVeto ] 0 : Hit 2: [-90.5659, -156.865, 27] + [ ecalVeto ] 0 : Hit 3: [-88.1579, -152.694, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -131.841, 23] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -136.011, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -127.67, 21] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -123.499, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -123.499, 19] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -119.329, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 18] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 17] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -110.987, 17] + [ ecalVeto ] 0 : Hit 1: [-52.039, -106.817, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -90.1341, 11] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -85.9634, 10] + [ ecalVeto ] 0 : Hit 2: [-32.7755, -81.7928, 9] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4931.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4191 Brem photon produced 89 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3541.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4192 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [38.5269, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7365.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4193 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 13 + [ ecalVeto ] 0 : Beginning track merging using 13 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-145.013, 29.1946, 24] + [ ecalVeto ] 0 : Hit 1: [-147.421, 33.3653, 23] + [ ecalVeto ] 0 : Hit 2: [-145.013, 37.5359, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, -29.1946, 23] + [ ecalVeto ] 0 : Hit 1: [33.711, -33.3653, 22] + [ ecalVeto ] 0 : Hit 2: [31.3031, -29.1946, 21] + [ ecalVeto ] 0 : Hit 3: [33.711, -25.024, 20] + [ ecalVeto ] 0 : Hit 4: [31.3031, -20.8533, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-137.789, 41.7066, 22] + [ ecalVeto ] 0 : Hit 1: [-140.197, 37.5359, 21] + [ ecalVeto ] 0 : Hit 2: [-137.789, 41.7066, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-125.749, 37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, 41.7066, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, -16.6826, 15] + [ ecalVeto ] 0 : Hit 4: [26.4873, -12.512, 14] + [ ecalVeto ] 0 : Hit 5: [24.0793, -8.34132, 13] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-111.302, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, 33.3653, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 33.3653, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 33.3653, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 10] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 8] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5325.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4194 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [60.1983, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [60.1983, 37.5359, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3981.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4195 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 8: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 9: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5642.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4196 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2266.36; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4197 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [89.0935, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [89.6303, -16.6826, 18] + [ ecalVeto ] 0 : Hit 2: [89.0935, -12.512, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4371.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4198 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [33.711, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [33.711, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [33.711, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3144.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4199 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 65.1101, 13] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 60.9395, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3227.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4200 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 102.646, 23] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 98.4754, 22] + [ ecalVeto ] 0 : Hit 2: [-11.1041, 94.3048, 21] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 91.7545, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -102.646, 23] + [ ecalVeto ] 0 : Hit 1: [-52.039, -98.4754, 22] + [ ecalVeto ] 0 : Hit 2: [-54.4469, -94.3048, 21] + [ ecalVeto ] 0 : Hit 3: [-52.039, -90.1341, 20] + [ ecalVeto ] 0 : Hit 4: [-54.4469, -85.9634, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 75.0719, 18] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 70.9012, 17] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 66.7306, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -69.2808, 16] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -65.1101, 15] + [ ecalVeto ] 0 : Hit 2: [-60.1983, -62.5599, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6032.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4201 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [19.2635, -50.0479, 22] + [ ecalVeto ] 0 : Hit 2: [16.8555, -54.2186, 21] + [ ecalVeto ] 0 : Hit 3: [16.8555, -54.2186, 19] + [ ecalVeto ] 0 : Hit 4: [19.2635, -50.0479, 18] + [ ecalVeto ] 0 : Hit 5: [16.8555, -45.8773, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 56.7688, 13] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 52.5982, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5354.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4202 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [66.4865, 106.817, 19] + [ ecalVeto ] 0 : Hit 1: [68.8945, 102.646, 18] + [ ecalVeto ] 0 : Hit 2: [66.4865, 98.4754, 17] + [ ecalVeto ] 0 : Hit 3: [68.8945, 94.3048, 16] + [ ecalVeto ] 0 : Hit 4: [66.4865, 90.1341, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [38.5269, 41.7066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6323.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4203 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4567.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4204 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-219.659, -16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-217.251, -12.512, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-152.237, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [-154.644, -37.5359, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-137.789, -25.024, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-140.197, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-137.789, -33.3653, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-125.749, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-123.341, -25.024, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 117 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3896.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4205 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6216.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4206 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-145.013, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1617.75; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4207 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -77.6221, 27] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -73.4515, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -29.1946, 25] + [ ecalVeto ] 0 : Hit 1: [-108.894, -25.024, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 22] + [ ecalVeto ] 0 : Hit 2: [-96.8541, -37.5359, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-132.973, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, -12.512, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-111.302, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, -8.34132, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-133.909, 156.865, 7] + [ ecalVeto ] 0 : Hit 1: [-131.501, 161.035, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-133.909, 173.547, 5] + [ ecalVeto ] 0 : Hit 1: [-131.501, 177.718, 4] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-126.685, 186.059, 3] + [ ecalVeto ] 0 : Hit 1: [-124.277, 190.23, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4138.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4208 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6765.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4209 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, -110.987, 18] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -106.817, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -66.7306, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -50.0479, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -54.2186, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4638.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4210 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3352.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4211 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6221.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4212 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 24] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 23] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 22] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 21] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 20] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 41.7066, 19] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 37.5359, 18] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 41.7066, 17] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 37.5359, 16] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 41.7066, 15] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 37.5359, 14] + [ ecalVeto ] 0 : Hit 11: [-4.81586, 41.7066, 13] + [ ecalVeto ] 0 : Hit 12: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 13: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 14: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 15: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 16: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 17: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 18: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 19: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, -87.5839, 21] + [ ecalVeto ] 0 : Hit 1: [-152.237, -83.4132, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, -66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [-116.118, -62.5599, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 1] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 20 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 864.655; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4213 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 24 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 370.246; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4214 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -33.3653, 11] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Hit 5: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Hit 6: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Hit 7: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -25.024, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -20.8533, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 10: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -25.024, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9093.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4215 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5923.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4216 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4216 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 75.0719, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 37.5359, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 62.5599, 1] + [ ecalVeto ] 0 : Hit 1: [4.81586, 66.7306, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6588.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4217 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 20.8533, 25] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, 37.5359, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, 41.7066, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, 37.5359, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 16.6826, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 4.17066, 12] + [ ecalVeto ] 0 : Hit 4: [-45.7507, 4.17066, 10] + [ ecalVeto ] 0 : Hit 5: [-40.9348, 4.17066, 11] + [ ecalVeto ] 0 : Hit 6: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Hit 7: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Hit 8: [-40.9348, 12.512, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4021.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4218 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 45.8773, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 41.7066, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [19.2635, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 41.7066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5423.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4219 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-109.829, 81.7928, 28] + [ ecalVeto ] 0 : Hit 1: [-112.237, 85.9634, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 94.3048, 25] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 90.1341, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 23] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 85.9634, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 65.1101, 19] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 69.2808, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 54.2186, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3266.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4220 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [23.1438, -165.206, 29] + [ ecalVeto ] 0 : Hit 1: [25.5517, -161.035, 28] + [ ecalVeto ] 0 : Hit 2: [23.1438, -156.865, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [18.3279, -148.523, 26] + [ ecalVeto ] 0 : Hit 1: [15.92, -144.353, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [18.3279, -131.841, 24] + [ ecalVeto ] 0 : Hit 1: [15.92, -127.67, 23] + [ ecalVeto ] 0 : Hit 2: [18.3279, -123.499, 22] + [ ecalVeto ] 0 : Hit 3: [15.92, -119.329, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 20] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 18] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 17] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 16] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 15] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 7: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -87.5839, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, -83.4132, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, -79.2426, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, -75.0719, 13] + [ ecalVeto ] 0 : Hit 4: [12.0397, -70.9012, 12] + [ ecalVeto ] 0 : Hit 5: [9.63173, -66.7306, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 8: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4356.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4221 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4404.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4222 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -52.5982, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -56.7688, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -70.9012, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5893.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4223 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-248.554, 41.7066, 27] + [ ecalVeto ] 0 : Hit 1: [-246.146, 37.5359, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-226.882, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-224.475, 33.3653, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [77.0538, 41.7066, 22] + [ ecalVeto ] 0 : Hit 1: [74.6459, 37.5359, 21] + [ ecalVeto ] 0 : Hit 2: [77.0538, 33.3653, 20] + [ ecalVeto ] 0 : Hit 3: [74.6459, 37.5359, 19] + [ ecalVeto ] 0 : Hit 4: [77.0538, 33.3653, 18] + [ ecalVeto ] 0 : Hit 5: [74.6459, 29.1946, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 11: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7633.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4224 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3339.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4225 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -33.3653, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, -37.5359, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -45.8773, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -50.0479, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, -83.4132, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -79.2426, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5599.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4226 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, 69.2808, 20] + [ ecalVeto ] 0 : Hit 1: [95.3817, 65.1101, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [48.1586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [45.7507, 4.17066, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [31.3031, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [33.711, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [31.3031, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [33.711, 8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5919; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4227 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [44.8152, 136.011, 25] + [ ecalVeto ] 0 : Hit 1: [47.2231, 140.182, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5807.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4228 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5569.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4229 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2065.02; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4230 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 50.0479, 1] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4210.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4231 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 50.0479, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 114 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3904.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4232 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 98.4754, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 110.987, 17] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 115.158, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 18 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3737.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4233 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -33.3653, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4978.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4234 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 24] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 22] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2407.03; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4235 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, -115.158, 22] + [ ecalVeto ] 0 : Hit 1: [73.7103, -110.987, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 12] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 7: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 8: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 9: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 10: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 11: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Hit 12: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -54.2186, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, -50.0479, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, 37.5359, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3770.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4236 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, -119.329, 16] + [ ecalVeto ] 0 : Hit 1: [52.039, -115.158, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [47.2231, -106.817, 14] + [ ecalVeto ] 0 : Hit 1: [44.8152, -102.646, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [32.7755, -81.7928, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, -79.2426, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3411.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4237 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5555.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4238 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2989.06; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4239 Brem photon produced 2 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7177.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4240 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -90.1341, 23] + [ ecalVeto ] 0 : Hit 1: [-102.606, -85.9634, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-176.316, -58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [-173.908, -54.2186, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -65.1101, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-140.197, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-137.789, -33.3653, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -58.3892, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-116.118, -29.1946, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4092; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4241 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3555.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4242 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-138.725, 90.1341, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3684.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4243 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, 77.6221, 16] + [ ecalVeto ] 0 : Hit 1: [80.9341, 73.4515, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -33.3653, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 8.34132, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5994.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4244 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-155.58, -186.059, 23] + [ ecalVeto ] 0 : Hit 1: [-153.172, -181.889, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, -140.182, 17] + [ ecalVeto ] 0 : Hit 1: [-117.053, -136.011, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -90.1341, 11] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -85.9634, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5061.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4245 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [118.525, 66.7306, 26] + [ ecalVeto ] 0 : Hit 1: [116.118, 62.5599, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [104.078, 58.3892, 24] + [ ecalVeto ] 0 : Hit 1: [101.67, 54.2186, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -75.0719, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -79.2426, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -91.7545, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -95.9252, 6] + [ ecalVeto ] 0 : Hit 2: [-3.88031, -98.4754, 5] + [ ecalVeto ] 0 : Hit 3: [-3.88031, -98.4754, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -91.7545, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -87.5839, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7964.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4246 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3785.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4247 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-89.6303, 25.024, 15] + [ ecalVeto ] 0 : Hit 2: [-87.2224, 20.8533, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-87.2224, 37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [-89.6303, 33.3653, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-74.6459, 29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [-77.0538, 33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [-74.6459, 37.5359, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 33.3653, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [26.4873, 4.17066, 2] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-104.078, 25.024, 3] + [ ecalVeto ] 0 : Hit 1: [-101.67, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6104.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4248 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 13] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 7: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 8: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 9: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 10: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 11: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 12: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6151.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4249 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Hit 6: [4.81586, -8.34132, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2581.74; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4250 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 16 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2385.4; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4251 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, 119.329, 27] + [ ecalVeto ] 0 : Hit 1: [32.7755, 115.158, 26] + [ ecalVeto ] 0 : Hit 2: [30.3676, 110.987, 25] + [ ecalVeto ] 0 : Hit 3: [32.7755, 106.817, 24] + [ ecalVeto ] 0 : Hit 4: [30.3676, 102.646, 23] + [ ecalVeto ] 0 : Hit 5: [32.7755, 98.4754, 22] + [ ecalVeto ] 0 : Hit 6: [30.3676, 94.3048, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -50.0479, 22] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -45.8773, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 70.9012, 15] + [ ecalVeto ] 0 : Hit 1: [19.2635, 75.0719, 14] + [ ecalVeto ] 0 : Hit 2: [16.8555, 70.9012, 13] + [ ecalVeto ] 0 : Hit 3: [19.2635, 66.7306, 12] + [ ecalVeto ] 0 : Hit 4: [16.8555, 62.5599, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -12.512, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 58.3892, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3370.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4252 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1697.68; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4253 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-109.829, 81.7928, 18] + [ ecalVeto ] 0 : Hit 1: [-112.237, 77.6221, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 65.1101, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 52.5982, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-73.7103, 69.2808, 14] + [ ecalVeto ] 0 : Hit 1: [-76.1183, 65.1101, 13] + [ ecalVeto ] 0 : Hit 2: [-73.7103, 69.2808, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 11] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 10] + [ ecalVeto ] 0 : Hit 2: [-61.6707, 65.1101, 11] + [ ecalVeto ] 0 : Hit 3: [-59.2627, 69.2808, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 69.2808, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 66.7306, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 62.5599, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [38.5269, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [38.5269, 8.34132, 7] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5262.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4254 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4254 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 79.2426, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 75.0719, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4826.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4255 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5845.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4256 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, -198.571, 19] + [ ecalVeto ] 0 : Hit 1: [11.1041, -194.401, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [8.69618, -123.499, 11] + [ ecalVeto ] 0 : Hit 1: [11.1041, -119.329, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 1] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4133.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4257 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [38.5269, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [38.5269, -33.3653, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8010.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4258 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, 140.182, 27] + [ ecalVeto ] 0 : Hit 1: [11.1041, 144.353, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [8.69618, 131.841, 25] + [ ecalVeto ] 0 : Hit 1: [11.1041, 127.67, 24] + [ ecalVeto ] 0 : Hit 2: [8.69618, 123.499, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [8.69618, 115.158, 21] + [ ecalVeto ] 0 : Hit 1: [11.1041, 110.987, 20] + [ ecalVeto ] 0 : Hit 2: [8.69618, 106.817, 19] + [ ecalVeto ] 0 : Hit 3: [11.1041, 102.646, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4770.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4259 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, -131.841, 26] + [ ecalVeto ] 0 : Hit 1: [15.92, -127.67, 25] + [ ecalVeto ] 0 : Hit 2: [18.3279, -123.499, 24] + [ ecalVeto ] 0 : Hit 3: [15.92, -119.329, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [11.1041, -119.329, 22] + [ ecalVeto ] 0 : Hit 1: [8.69618, -115.158, 21] + [ ecalVeto ] 0 : Hit 2: [11.1041, -110.987, 20] + [ ecalVeto ] 0 : Hit 3: [8.69618, -106.817, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [3.88031, -98.4754, 18] + [ ecalVeto ] 0 : Hit 1: [2.40793, -95.9252, 17] + [ ecalVeto ] 0 : Hit 2: [4.81586, -91.7545, 16] + [ ecalVeto ] 0 : Hit 3: [2.40793, -87.5839, 15] + [ ecalVeto ] 0 : Hit 4: [4.81586, -83.4132, 14] + [ ecalVeto ] 0 : Hit 5: [2.40793, -79.2426, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -58.3892, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -62.5599, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -62.5599, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -50.0479, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4150.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4260 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3775.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4261 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, -45.8773, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, -41.7066, 13] + [ ecalVeto ] 0 : Hit 4: [26.4873, -37.5359, 12] + [ ecalVeto ] 0 : Hit 5: [24.0793, -33.3653, 11] + [ ecalVeto ] 0 : Hit 6: [26.4873, -37.5359, 10] + [ ecalVeto ] 0 : Hit 7: [24.0793, -33.3653, 9] + [ ecalVeto ] 0 : Hit 8: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Hit 9: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Hit 10: [26.4873, -20.8533, 6] + [ ecalVeto ] 0 : Hit 11: [24.0793, -16.6826, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -90.1341, 4] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -85.9634, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5523.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4262 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5965.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4263 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3761.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4264 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, -136.011, 20] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -131.841, 19] + [ ecalVeto ] 0 : Hit 2: [-15.92, -127.67, 18] + [ ecalVeto ] 0 : Hit 3: [-18.3279, -123.499, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6866.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4265 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, 85.9634, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 83.4132, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 79.2426, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, 75.0719, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 70.9012, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 66.7306, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 62.5599, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, 66.7306, 12] + [ ecalVeto ] 0 : Hit 5: [16.8555, 62.5599, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 58.3892, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3670.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4266 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5802.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4267 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -45.8773, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [62.6062, -16.6826, 20] + [ ecalVeto ] 0 : Hit 1: [60.1983, -20.8533, 19] + [ ecalVeto ] 0 : Hit 2: [62.6062, -25.024, 18] + [ ecalVeto ] 0 : Hit 3: [60.1983, -29.1946, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [55.3824, -29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [52.9745, -33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [55.3824, -37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [52.9745, -33.3653, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3392.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4268 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-116.118, 4.17066, 26] + [ ecalVeto ] 0 : Hit 1: [-118.525, 8.34132, 25] + [ ecalVeto ] 0 : Hit 2: [-118.525, 8.34132, 23] + [ ecalVeto ] 0 : Hit 3: [-116.118, 4.17066, 22] + [ ecalVeto ] 0 : Hit 4: [-118.525, 8.34132, 21] + [ ecalVeto ] 0 : Hit 5: [-116.118, 4.17066, 20] + [ ecalVeto ] 0 : Hit 6: [-118.525, 8.34132, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3913.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4269 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 98.4754, 16] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 94.3048, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5629.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4270 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6299.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4271 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3740.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4272 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 45.8773, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [33.711, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5783.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4273 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-94.4462, -50.0479, 2] + [ ecalVeto ] 0 : Hit 1: [-96.8541, -45.8773, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5211.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4274 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [133.909, 115.158, 28] + [ ecalVeto ] 0 : Hit 1: [131.501, 110.987, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [97.7897, -69.2808, 26] + [ ecalVeto ] 0 : Hit 1: [95.3817, -65.1101, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, 41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, 45.8773, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, 41.7066, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 116 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4773.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4275 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 16.6826, 20] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 16] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 12.512, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 4.17066, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6558.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4276 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 14 + [ ecalVeto ] 0 : Beginning track merging using 14 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -33.3653, 31] + [ ecalVeto ] 0 : Hit 1: [-173.908, -29.1946, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, -12.512, 25] + [ ecalVeto ] 0 : Hit 1: [-123.341, -8.34132, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, -12.512, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, -4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-104.078, 8.34132, 23] + [ ecalVeto ] 0 : Hit 1: [-101.67, 12.512, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 21] + [ ecalVeto ] 0 : Hit 1: [-101.67, 4.17066, 20] + [ ecalVeto ] 0 : Hit 2: [-96.8541, 4.17066, 21] + [ ecalVeto ] 0 : Hit 3: [-94.4462, -2.36672e-14, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 4.17066, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 12] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3318.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4277 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1907.27; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4278 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 58.3892, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 54.2186, 12] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 54.2186, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3389.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4279 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4596.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4280 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -8.34132, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5171.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4281 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.039, 165.206, 31] + [ ecalVeto ] 0 : Hit 1: [54.4469, 161.035, 30] + [ ecalVeto ] 0 : Hit 2: [52.039, 156.865, 29] + [ ecalVeto ] 0 : Hit 3: [54.4469, 152.694, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -69.2808, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -65.1101, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -65.1101, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -60.9395, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -58.3892, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -54.2186, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -50.0479, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6849.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4282 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 37.5359, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 15 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2076.13; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4283 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -94.3048, 33] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -98.4754, 32] + [ ecalVeto ] 0 : Hit 2: [-39.9993, -94.3048, 31] + [ ecalVeto ] 0 : Hit 3: [-37.5914, -90.1341, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, -4.17066, 33] + [ ecalVeto ] 0 : Hit 1: [31.3031, -4.17066, 31] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 30] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 28] + [ ecalVeto ] 0 : Hit 2: [31.3031, 4.17066, 29] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 27] + [ ecalVeto ] 0 : Hit 4: [33.711, 8.34132, 26] + [ ecalVeto ] 0 : Hit 5: [31.3031, 4.17066, 25] + [ ecalVeto ] 0 : Hit 6: [33.711, -2.66454e-15, 24] + [ ecalVeto ] 0 : Hit 7: [31.3031, 4.17066, 23] + [ ecalVeto ] 0 : Hit 8: [33.711, -2.66454e-15, 22] + [ ecalVeto ] 0 : Hit 9: [31.3031, 4.17066, 21] + [ ecalVeto ] 0 : Hit 10: [33.711, -2.66454e-15, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -85.9634, 28] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -81.7928, 27] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -66.7306, 19] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -62.5599, 18] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -58.3892, 17] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -54.2186, 16] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -54.2186, 14] + [ ecalVeto ] 0 : Hit 6: [-19.2635, -50.0479, 13] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -54.2186, 15] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -54.2186, 13] + [ ecalVeto ] 0 : Hit 9: [-9.63173, -50.0479, 12] + [ ecalVeto ] 0 : Hit 10: [-12.0397, -45.8773, 11] + [ ecalVeto ] 0 : Hit 11: [-9.63173, -41.7066, 10] + [ ecalVeto ] 0 : Hit 12: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 13: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 14: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 15: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 16: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 17: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Hit 18: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [24.0793, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 18] + [ ecalVeto ] 0 : Hit 2: [24.0793, -2.66454e-15, 17] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3344.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4284 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -194.401, 13] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -190.23, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [31.3031, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [33.711, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 114 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5249.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4285 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 24] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 23] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 22] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5298.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4286 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3131.22; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4287 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4641.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4288 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [96.8541, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [94.4462, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [94.4462, 16.6826, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6628.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4289 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8425.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4290 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5083.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4291 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -33.3653, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3192.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4292 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, 45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-137.789, 41.7066, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-125.749, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-123.341, 33.3653, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, 25.024, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [31.3031, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [33.711, -33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [33.711, -33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1725.58; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4293 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4204.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4294 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -136.011, 5] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -131.841, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 3] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6155.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4295 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-212.435, -45.8773, 29] + [ ecalVeto ] 0 : Hit 1: [-210.027, -50.0479, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-205.211, -50.0479, 27] + [ ecalVeto ] 0 : Hit 1: [-202.803, -45.8773, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-169.092, -45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [-166.684, -41.7066, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -91.7545, 23] + [ ecalVeto ] 0 : Hit 1: [12.0397, -87.5839, 22] + [ ecalVeto ] 0 : Hit 2: [9.63173, -83.4132, 21] + [ ecalVeto ] 0 : Hit 3: [12.0397, -79.2426, 20] + [ ecalVeto ] 0 : Hit 4: [9.63173, -75.0719, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-154.644, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-152.237, -41.7066, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-140.197, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-137.789, -41.7066, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, -62.5599, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, -58.3892, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, -54.2186, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, -50.0479, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5026.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4296 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [40.9348, 20.8533, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-124.277, -73.4515, 8] + [ ecalVeto ] 0 : Hit 1: [-125.749, -70.9012, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8074.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4297 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 223.595, 27] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 219.425, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, -45.8773, 25] + [ ecalVeto ] 0 : Hit 1: [-152.237, -41.7066, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-147.421, -41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-145.013, -37.5359, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-140.197, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-137.789, -33.3653, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-132.973, -33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-130.565, -29.1946, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -85.9634, 16] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -81.7928, 15] + [ ecalVeto ] 0 : Hit 2: [-59.2627, -77.6221, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-111.302, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, -16.6826, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -16.6826, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 25.024, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [9.63173, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-88.1579, -69.2808, 8] + [ ecalVeto ] 0 : Hit 1: [-90.5659, -73.4515, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 124 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3648.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4298 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [90.5659, 90.1341, 18] + [ ecalVeto ] 0 : Hit 1: [88.1579, 85.9634, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3517.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4299 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -190.23, 19] + [ ecalVeto ] 0 : Hit 1: [-15.92, -194.401, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5979.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4300 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 15 + [ ecalVeto ] 0 : Beginning track merging using 15 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -58.3892, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, -54.2186, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -33.3653, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -25.024, 21] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -20.8533, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-154.644, -4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-152.237, -8.34132, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -8.34132, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-140.197, -4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-137.789, -2.36672e-14, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 16.6826, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 12] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -2.36672e-14, 13] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -4.17066, 12] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [81.8697, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [81.8697, 33.3653, 11] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 25.024, 10] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4617.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4301 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4281.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4302 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-159.46, 37.5359, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6159.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4303 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -12.512, 14] + [ ecalVeto ] 0 : Hit 1: [-33.711, -8.34132, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 112 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7672.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4304 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 745.981; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4305 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, -58.3892, 29] + [ ecalVeto ] 0 : Hit 1: [-145.013, -54.2186, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -156.865, 23] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -161.035, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -66.7306, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -62.5599, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -58.3892, 9] + [ ecalVeto ] 0 : Hit 4: [9.63173, -58.3892, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -62.5599, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3709.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4306 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 79.2426, 25] + [ ecalVeto ] 0 : Hit 1: [19.2635, 75.0719, 24] + [ ecalVeto ] 0 : Hit 2: [16.8555, 70.9012, 23] + [ ecalVeto ] 0 : Hit 3: [19.2635, 66.7306, 22] + [ ecalVeto ] 0 : Hit 4: [16.8555, 62.5599, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 15] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 14] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5166.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4307 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, 12.512, 27] + [ ecalVeto ] 0 : Hit 1: [-123.341, 8.34132, 26] + [ ecalVeto ] 0 : Hit 2: [-125.749, 4.17066, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -2.36672e-14, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, -4.17066, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 25] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2532.84; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4308 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 70.9012, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 54.2186, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-176.316, -58.3892, 3] + [ ecalVeto ] 0 : Hit 1: [-173.908, -62.5599, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5002.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4309 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1793.54; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4310 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [45.7507, -4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [48.1586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [45.7507, -12.512, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4728.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4311 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [73.7103, 60.9395, 29] + [ ecalVeto ] 0 : Hit 1: [76.1183, 65.1101, 28] + [ ecalVeto ] 0 : Hit 2: [73.7103, 60.9395, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 54.2186, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 152.694, 1] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 156.865, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5486.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4312 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6736.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4313 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3932.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4314 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 10 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1865.73; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4315 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -77.6221, 27] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -73.4515, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -65.1101, 25] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -60.9395, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -52.5982, 23] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -50.0479, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -33.3653, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3244.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4316 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -70.9012, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -75.0719, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6071.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4317 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -90.1341, 7] + [ ecalVeto ] 0 : Hit 1: [-15.92, -94.3048, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5078.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4318 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, -102.646, 26] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -98.4754, 25] + [ ecalVeto ] 0 : Hit 2: [-15.92, -94.3048, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 18] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -41.7066, 17] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -37.5359, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10457.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4319 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5347.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4320 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 8.34132, 24] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 12.512, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 16.6826, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4703.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4321 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 20.8533, 27] + [ ecalVeto ] 0 : Hit 1: [-108.894, 16.6826, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 25] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 8.34132, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -2.66454e-15, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4903.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4322 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1372.86; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4323 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 62.5599, 26] + [ ecalVeto ] 0 : Hit 1: [38.5269, 58.3892, 25] + [ ecalVeto ] 0 : Hit 2: [40.9348, 54.2186, 24] + [ ecalVeto ] 0 : Hit 3: [38.5269, 50.0479, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 41.7066, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, 37.5359, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, 33.3653, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, 29.1946, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 13] + [ ecalVeto ] 0 : Hit 4: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 5: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 1] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 2] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 1] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 1] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2326.59; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4324 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 66.7306, 27] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 26] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 58.3892, 25] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 54.2186, 24] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 50.0479, 23] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 45.8773, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 20] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 19] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 18] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 20.8533, 17] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3314.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4325 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 75.0719, 21] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 75.0719, 19] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 70.9012, 18] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 66.7306, 17] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 62.5599, 16] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 58.3892, 15] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 62.5599, 14] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 58.3892, 13] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 54.2186, 12] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 50.0479, 11] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 45.8773, 10] + [ ecalVeto ] 0 : Hit 11: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 12: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 13: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 14: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-1.47238, 102.646, 20] + [ ecalVeto ] 0 : Hit 1: [-3.88031, 98.4754, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2305.62; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4326 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5026.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4327 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 70.9012, 15] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 66.7306, 14] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 62.5599, 13] + [ ecalVeto ] 0 : Hit 4: [-24.0793, 58.3892, 12] + [ ecalVeto ] 0 : Hit 5: [-26.4873, 62.5599, 11] + [ ecalVeto ] 0 : Hit 6: [-24.0793, 58.3892, 10] + [ ecalVeto ] 0 : Hit 7: [-26.4873, 54.2186, 9] + [ ecalVeto ] 0 : Hit 8: [-24.0793, 58.3892, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 50.0479, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 66.7306, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 62.5599, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 87.5839, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 83.4132, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 75.0719, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 70.9012, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5773.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4328 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 25] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 24] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6804.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4329 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -58.3892, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -54.2186, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -45.8773, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7848.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4330 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -106.817, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -102.646, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 87.5839, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 83.4132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 87.5839, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 83.4132, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7062.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4331 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8156.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4332 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4963.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4333 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [60.1983, -45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [62.6062, -41.7066, 22] + [ ecalVeto ] 0 : Hit 2: [60.1983, -37.5359, 21] + [ ecalVeto ] 0 : Hit 3: [62.6062, -33.3653, 20] + [ ecalVeto ] 0 : Hit 4: [55.3824, -37.5359, 22] + [ ecalVeto ] 0 : Hit 5: [52.9745, -33.3653, 21] + [ ecalVeto ] 0 : Hit 6: [55.3824, -37.5359, 20] + [ ecalVeto ] 0 : Hit 7: [52.9745, -41.7066, 19] + [ ecalVeto ] 0 : Hit 8: [55.3824, -37.5359, 18] + [ ecalVeto ] 0 : Hit 9: [52.9745, -41.7066, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -29.1946, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, -37.5359, 18] + [ ecalVeto ] 0 : Hit 3: [40.9348, -37.5359, 16] + [ ecalVeto ] 0 : Hit 4: [38.5269, -33.3653, 15] + [ ecalVeto ] 0 : Hit 5: [40.9348, -37.5359, 14] + [ ecalVeto ] 0 : Hit 6: [38.5269, -33.3653, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, -33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3275.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4334 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 17 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3834.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4335 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 21] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 20] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5210.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4336 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 21] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 20] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 19] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 18] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 16] + [ ecalVeto ] 0 : Hit 5: [16.8555, 12.512, 17] + [ ecalVeto ] 0 : Hit 6: [19.2635, 8.34132, 16] + [ ecalVeto ] 0 : Hit 7: [16.8555, 4.17066, 15] + [ ecalVeto ] 0 : Hit 8: [19.2635, 8.34132, 14] + [ ecalVeto ] 0 : Hit 9: [16.8555, 4.17066, 13] + [ ecalVeto ] 0 : Hit 10: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 11: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 12: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 13: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 8: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2670.02; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4337 Brem photon produced 5 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5241.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4338 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -25.024, 25] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -20.8533, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -12.512, 18] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -8.34132, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 14] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -25.024, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3150.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4339 Brem photon produced 85 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6394.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4340 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, -58.3892, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, -54.2186, 11] + [ ecalVeto ] 0 : Hit 3: [19.2635, -50.0479, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 119.329, 11] + [ ecalVeto ] 0 : Hit 1: [-52.039, 123.499, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [88.1579, -77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [90.5659, -73.4515, 10] + [ ecalVeto ] 0 : Hit 2: [88.1579, -69.2808, 9] + [ ecalVeto ] 0 : Hit 3: [90.5659, -73.4515, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5828.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4341 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 127.67, 28] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 123.499, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 110.987, 26] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 106.817, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 94.3048, 24] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 90.1341, 23] + [ ecalVeto ] 0 : Hit 2: [-30.3676, 85.9634, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 66.7306, 20] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 62.5599, 19] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 58.3892, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 3] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6270.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4342 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 18] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 17] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -45.8773, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 16] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 15] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 14] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-88.1579, 69.2808, 12] + [ ecalVeto ] 0 : Hit 1: [-90.5659, 65.1101, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 58.3892, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 77.6221, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, 33.3653, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4005.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4343 Brem photon produced 4 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3136.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4344 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 2] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5195.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4345 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -66.7306, 18] + [ ecalVeto ] 0 : Hit 1: [2.40793, -62.5599, 17] + [ ecalVeto ] 0 : Hit 2: [4.81586, -58.3892, 16] + [ ecalVeto ] 0 : Hit 3: [2.40793, -54.2186, 15] + [ ecalVeto ] 0 : Hit 4: [4.81586, -50.0479, 14] + [ ecalVeto ] 0 : Hit 5: [2.40793, -45.8773, 13] + [ ecalVeto ] 0 : Hit 6: [4.81586, -41.7066, 12] + [ ecalVeto ] 0 : Hit 7: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Hit 8: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 9: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 10: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 11: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 12: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 13: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-116.118, 54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [-118.525, 58.3892, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3541.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4346 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5096.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4347 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -115.158, 23] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -119.329, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -127.67, 21] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -131.841, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -148.523, 19] + [ ecalVeto ] 0 : Hit 1: [-15.92, -152.694, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3703.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4348 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 106.817, 24] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 102.646, 23] + [ ecalVeto ] 0 : Hit 2: [-23.1438, 98.4754, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [19.2635, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 60.9395, 11] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 65.1101, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 58.3892, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 54.2186, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5097.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4349 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, -20.8533, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 2] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4363.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4350 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -202.742, 23] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -198.571, 22] + [ ecalVeto ] 0 : Hit 2: [-39.9993, -194.401, 21] + [ ecalVeto ] 0 : Hit 3: [-37.5914, -190.23, 20] + [ ecalVeto ] 0 : Hit 4: [-32.7755, -190.23, 21] + [ ecalVeto ] 0 : Hit 5: [-30.3676, -194.401, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -181.889, 20] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -177.718, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [40.9348, 12.512, 18] + [ ecalVeto ] 0 : Hit 2: [38.5269, 8.34132, 17] + [ ecalVeto ] 0 : Hit 3: [40.9348, 4.17066, 16] + [ ecalVeto ] 0 : Hit 4: [38.5269, -2.66454e-15, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -83.4132, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, -79.2426, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, -75.0719, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, -79.2426, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, -83.4132, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -70.9012, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, -66.7306, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, -62.5599, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -4.17066, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3956.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4351 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 22] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 21] + [ ecalVeto ] 0 : Hit 2: [19.2635, 41.7066, 20] + [ ecalVeto ] 0 : Hit 3: [16.8555, 45.8773, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 15] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 14] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 13] + [ ecalVeto ] 0 : Hit 6: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 7: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3685.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4352 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3549.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4353 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2475.79; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4354 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-212.435, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-210.027, -16.6826, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 45.8773, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-147.421, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-145.013, -12.512, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 37.5359, 11] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 33.3653, 10] + [ ecalVeto ] 0 : Hit 4: [-24.0793, 33.3653, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5463.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4355 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, 25.024, 13] + [ ecalVeto ] 0 : Hit 2: [40.9348, 29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [38.5269, 25.024, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4850.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4356 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2882.62; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4357 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [44.8152, -136.011, 19] + [ ecalVeto ] 0 : Hit 1: [47.2231, -131.841, 18] + [ ecalVeto ] 0 : Hit 2: [44.8152, -136.011, 17] + [ ecalVeto ] 0 : Hit 3: [47.2231, -131.841, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [37.5914, -131.841, 17] + [ ecalVeto ] 0 : Hit 1: [39.9993, -127.67, 16] + [ ecalVeto ] 0 : Hit 2: [37.5914, -123.499, 15] + [ ecalVeto ] 0 : Hit 3: [39.9993, -119.329, 14] + [ ecalVeto ] 0 : Hit 4: [37.5914, -115.158, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [48.1586, 50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [45.7507, 45.8773, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [40.9348, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, 33.3653, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [32.7755, -106.817, 12] + [ ecalVeto ] 0 : Hit 1: [30.3676, -102.646, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [31.3031, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [33.711, 33.3653, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5274.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4358 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6763.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4359 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [-26.4873, 45.8773, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 66.7306, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, 66.7306, 11] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 62.5599, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 41.7066, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 41.7066, 9] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 37.5359, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7585.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4360 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 66.7306, 24] + [ ecalVeto ] 0 : Hit 1: [16.8555, 62.5599, 23] + [ ecalVeto ] 0 : Hit 2: [19.2635, 58.3892, 22] + [ ecalVeto ] 0 : Hit 3: [16.8555, 54.2186, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 114 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9906.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4361 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-88.1579, -236.107, 28] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -236.107, 26] + [ ecalVeto ] 0 : Hit 2: [-88.1579, -236.107, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -236.107, 27] + [ ecalVeto ] 0 : Hit 1: [-83.3421, -236.107, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -227.766, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -231.937, 22] + [ ecalVeto ] 0 : Hit 2: [-83.3421, -227.766, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -227.766, 20] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -223.595, 19] + [ ecalVeto ] 0 : Hit 2: [-73.7103, -227.766, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -219.425, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -223.595, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -211.083, 15] + [ ecalVeto ] 0 : Hit 1: [-52.039, -206.913, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -194.401, 13] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -198.571, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2508.12; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4362 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4362 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, 85.9634, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 83.4132, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 79.2426, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 75.0719, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Hit 8: [4.81586, 41.7066, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 58.3892, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 54.2186, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 58.3892, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 54.2186, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 58.3892, 3] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 3] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 54.2186, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7894.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4363 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [38.5269, -2.66454e-15, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Hit 5: [-19.2635, 8.34132, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 20.8533, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6905.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4364 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-152.237, -66.7306, 30] + [ ecalVeto ] 0 : Hit 1: [-154.644, -62.5599, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-159.46, -54.2186, 28] + [ ecalVeto ] 0 : Hit 1: [-161.868, -50.0479, 27] + [ ecalVeto ] 0 : Hit 2: [-159.46, -45.8773, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-169.092, -45.8773, 27] + [ ecalVeto ] 0 : Hit 1: [-166.684, -50.0479, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-132.973, -41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, -45.8773, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-118.525, -41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, -45.8773, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -62.5599, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -58.3892, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4987.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4365 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3700.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4366 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [126.685, -102.646, 24] + [ ecalVeto ] 0 : Hit 1: [124.277, -98.4754, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, 29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, 29.1946, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 62.5599, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 62.5599, 9] + [ ecalVeto ] 0 : Hit 4: [16.8555, 62.5599, 7] + [ ecalVeto ] 0 : Hit 5: [9.63173, 66.7306, 9] + [ ecalVeto ] 0 : Hit 6: [12.0397, 62.5599, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, 58.3892, 7] + [ ecalVeto ] 0 : Hit 8: [12.0397, 62.5599, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 6: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 7: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 8: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 9: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 58.3892, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7406.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4367 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -94.3048, 15] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -90.1341, 14] + [ ecalVeto ] 0 : Hit 2: [-25.5517, -85.9634, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 12.512, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6404.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4368 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2319.74; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4369 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -94.3048, 21] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -90.1341, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, -110.987, 18] + [ ecalVeto ] 0 : Hit 1: [23.1438, -106.817, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3979.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4370 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4370 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, -12.512, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -25.024, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, 8.34132, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [40.9348, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, -25.024, 11] + [ ecalVeto ] 0 : Hit 2: [40.9348, -20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [38.5269, -16.6826, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [19.2635, -16.6826, 2] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 1] + [ ecalVeto ] 0 : Hit 2: [19.2635, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9782.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4371 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 50.0479, 24] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 45.8773, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-123.341, 25.024, 20] + [ ecalVeto ] 0 : Hit 1: [-125.749, 20.8533, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-101.67, 37.5359, 20] + [ ecalVeto ] 0 : Hit 1: [-104.078, 33.3653, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, 33.3653, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5543.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4372 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-11.1041, 152.694, 27] + [ ecalVeto ] 0 : Hit 1: [-8.69618, 156.865, 26] + [ ecalVeto ] 0 : Hit 2: [-11.1041, 152.694, 25] + [ ecalVeto ] 0 : Hit 3: [-8.69618, 148.523, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 75.0719, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 70.9012, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 66.7306, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 62.5599, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4054.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4373 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 77.6221, 27] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 75.0719, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 75.0719, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 79.2426, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4168.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4374 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 22] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 21] + [ ecalVeto ] 0 : Hit 2: [19.2635, -33.3653, 20] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 19] + [ ecalVeto ] 0 : Hit 4: [19.2635, -41.7066, 18] + [ ecalVeto ] 0 : Hit 5: [16.8555, -45.8773, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2750.9; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4375 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7690.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4376 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5619.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4377 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4879.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4378 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 24] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 23] + [ ecalVeto ] 0 : Hit 2: [26.4873, 62.5599, 22] + [ ecalVeto ] 0 : Hit 3: [24.0793, 58.3892, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4111.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4379 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, -161.035, 20] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -156.865, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -79.2426, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -75.0719, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -70.9012, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6693; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4380 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5409.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4381 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -148.523, 27] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -144.353, 26] + [ ecalVeto ] 0 : Hit 2: [-3.88031, -140.182, 25] + [ ecalVeto ] 0 : Hit 3: [-1.47238, -136.011, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 211.083, 23] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 206.913, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -123.499, 23] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -119.329, 22] + [ ecalVeto ] 0 : Hit 2: [-3.88031, -115.158, 21] + [ ecalVeto ] 0 : Hit 3: [-1.47238, -110.987, 20] + [ ecalVeto ] 0 : Hit 4: [-3.88031, -106.817, 19] + [ ecalVeto ] 0 : Hit 5: [-1.47238, -102.646, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 194.401, 21] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 190.23, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3362.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4382 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, -33.3653, 29] + [ ecalVeto ] 0 : Hit 1: [-130.565, -29.1946, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 27] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -16.6826, 25] + [ ecalVeto ] 0 : Hit 1: [-101.67, -12.512, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 19 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2824.72; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4383 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-74.6459, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-77.0538, 16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -20.8533, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3709.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4384 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [48.1586, -50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [48.1586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [45.7507, -45.8773, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [26.4873, -70.9012, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [33.711, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [31.3031, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [31.3031, -29.1946, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [24.0793, -33.3653, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [40.9348, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [38.5269, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [40.9348, -29.1946, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6909.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4385 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -81.7928, 25] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -77.6221, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -73.4515, 23] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -77.6221, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -69.2808, 21] + [ ecalVeto ] 0 : Hit 1: [-52.039, -73.4515, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -62.5599, 15] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -50.0479, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -62.5599, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4442.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4386 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4436.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4387 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.88031, 98.4754, 24] + [ ecalVeto ] 0 : Hit 1: [3.88031, 98.4754, 22] + [ ecalVeto ] 0 : Hit 2: [2.40793, 95.9252, 21] + [ ecalVeto ] 0 : Hit 3: [4.81586, 91.7545, 20] + [ ecalVeto ] 0 : Hit 4: [2.40793, 87.5839, 19] + [ ecalVeto ] 0 : Hit 5: [4.81586, 83.4132, 18] + [ ecalVeto ] 0 : Hit 6: [2.40793, 79.2426, 17] + [ ecalVeto ] 0 : Hit 7: [4.81586, 75.0719, 16] + [ ecalVeto ] 0 : Hit 8: [2.40793, 70.9012, 15] + [ ecalVeto ] 0 : Hit 9: [4.81586, 66.7306, 14] + [ ecalVeto ] 0 : Hit 10: [2.40793, 62.5599, 13] + [ ecalVeto ] 0 : Hit 11: [4.81586, 58.3892, 12] + [ ecalVeto ] 0 : Hit 12: [2.40793, 54.2186, 11] + [ ecalVeto ] 0 : Hit 13: [4.81586, 50.0479, 10] + [ ecalVeto ] 0 : Hit 14: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 15: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 16: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 17: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 18: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -140.182, 13] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -136.011, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4932.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4388 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 219.425, 33] + [ ecalVeto ] 0 : Hit 1: [-109.829, 215.254, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 181.889, 23] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 177.718, 22] + [ ecalVeto ] 0 : Hit 2: [-32.7755, 173.547, 21] + [ ecalVeto ] 0 : Hit 3: [-30.3676, 177.718, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [154.644, -4.17066, 22] + [ ecalVeto ] 0 : Hit 1: [152.237, -2.66454e-15, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 223.595, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 227.766, 18] + [ ecalVeto ] 0 : Hit 2: [-76.1183, 231.937, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3161.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4389 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 33.3653, 2] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 37.5359, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3255.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4390 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 20.8533, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5997.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4391 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6162.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4392 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 12] + [ ecalVeto ] 0 : Hit 3: [19.2635, -41.7066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 8: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 9: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Hit 10: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [26.4873, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, -8.34132, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, -20.8533, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6243.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4393 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -98.4754, 27] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -102.646, 26] + [ ecalVeto ] 0 : Hit 2: [-3.88031, -98.4754, 25] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -95.9252, 24] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -91.7545, 23] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -87.5839, 22] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -87.5839, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-101.67, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [-104.078, 41.7066, 13] + [ ecalVeto ] 0 : Hit 2: [-101.67, 37.5359, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [2.40793, -62.5599, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -58.3892, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -54.2186, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 9: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 10: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [255.778, -4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [253.37, -8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3147.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4394 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, -73.4515, 26] + [ ecalVeto ] 0 : Hit 1: [45.7507, -70.9012, 25] + [ ecalVeto ] 0 : Hit 2: [48.1586, -66.7306, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -20.8533, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [19.2635, 33.3653, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [24.0793, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2824.12; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4395 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8456.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4396 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 83.4132, 26] + [ ecalVeto ] 0 : Hit 1: [16.8555, 79.2426, 25] + [ ecalVeto ] 0 : Hit 2: [19.2635, 75.0719, 24] + [ ecalVeto ] 0 : Hit 3: [16.8555, 70.9012, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-133.909, 90.1341, 25] + [ ecalVeto ] 0 : Hit 1: [-131.501, 94.3048, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-126.685, 94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, 90.1341, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 70.9012, 22] + [ ecalVeto ] 0 : Hit 1: [9.63173, 66.7306, 21] + [ ecalVeto ] 0 : Hit 2: [12.0397, 62.5599, 20] + [ ecalVeto ] 0 : Hit 3: [9.63173, 58.3892, 19] + [ ecalVeto ] 0 : Hit 4: [4.81586, 58.3892, 20] + [ ecalVeto ] 0 : Hit 5: [4.81586, 58.3892, 18] + [ ecalVeto ] 0 : Hit 6: [2.40793, 54.2186, 17] + [ ecalVeto ] 0 : Hit 7: [4.81586, 50.0479, 16] + [ ecalVeto ] 0 : Hit 8: [2.40793, 45.8773, 15] + [ ecalVeto ] 0 : Hit 9: [4.81586, 41.7066, 14] + [ ecalVeto ] 0 : Hit 10: [2.40793, 37.5359, 13] + [ ecalVeto ] 0 : Hit 11: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-105.013, 81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [-102.606, 77.6221, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [69.83, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [67.4221, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3982.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4397 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4397 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 16] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 8: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 9: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 10: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 11: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 12: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 13: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 14: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 118 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5147.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4398 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3276.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4399 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 8.34132, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, 4.17066, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, -16.6826, 21] + [ ecalVeto ] 0 : Hit 1: [40.9348, -12.512, 20] + [ ecalVeto ] 0 : Hit 2: [38.5269, -16.6826, 19] + [ ecalVeto ] 0 : Hit 3: [40.9348, -12.512, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3009.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4400 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 20] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 19] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 18] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 17] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 16] + [ ecalVeto ] 0 : Hit 6: [9.63173, 25.024, 15] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 14] + [ ecalVeto ] 0 : Hit 8: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 9: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 10: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 11: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 12: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 13: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 14: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 15: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4217.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4401 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-66.4865, -198.571, 30] + [ ecalVeto ] 0 : Hit 1: [-68.8945, -194.401, 29] + [ ecalVeto ] 0 : Finding linreg tracks from 40 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2454.28; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4402 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -85.9634, 5] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -81.7928, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4511.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4403 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6297.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4404 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-33.711, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -12.512, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4984.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4405 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3015.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4406 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -102.646, 23] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -98.4754, 22] + [ ecalVeto ] 0 : Hit 2: [-25.5517, -94.3048, 21] + [ ecalVeto ] 0 : Hit 3: [-23.1438, -90.1341, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -83.4132, 19] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -79.2426, 18] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -75.0719, 17] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -70.9012, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -45.8773, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [96.8541, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [94.4462, 25.024, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10916.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4407 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 6: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 7: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3364.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4408 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, 33.3653, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -29.1946, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3988.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4409 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 127.67, 24] + [ ecalVeto ] 0 : Hit 1: [66.4865, 123.499, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 15] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 14] + [ ecalVeto ] 0 : Hit 5: [16.8555, 29.1946, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5568.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4410 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [52.9745, 33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [55.3824, 37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [52.9745, 33.3653, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5134.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4411 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-205.211, 58.3892, 25] + [ ecalVeto ] 0 : Hit 1: [-202.803, 54.2186, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-183.54, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-181.132, 33.3653, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-101.67, -12.512, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5057.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4412 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, 95.9252, 23] + [ ecalVeto ] 0 : Hit 1: [-166.684, 91.7545, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 75.0719, 19] + [ ecalVeto ] 0 : Hit 1: [-130.565, 70.9012, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -73.4515, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -77.6221, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4787.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4413 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -66.7306, 11] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -66.7306, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5378.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4414 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [59.2627, -144.353, 31] + [ ecalVeto ] 0 : Hit 1: [61.6707, -140.182, 30] + [ ecalVeto ] 0 : Hit 2: [59.2627, -136.011, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.039, -140.182, 30] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -136.011, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [44.8152, -110.987, 25] + [ ecalVeto ] 0 : Hit 1: [47.2231, -106.817, 24] + [ ecalVeto ] 0 : Hit 2: [44.8152, -102.646, 23] + [ ecalVeto ] 0 : Hit 3: [47.2231, -98.4754, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-155.58, -119.329, 21] + [ ecalVeto ] 0 : Hit 1: [-153.172, -115.158, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-119.461, -90.1341, 17] + [ ecalVeto ] 0 : Hit 1: [-117.053, -85.9634, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-105.013, -73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-102.606, -69.2808, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, 50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, 54.2186, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [40.9348, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [40.9348, 37.5359, 4] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 4] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5219.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4415 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5161.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4416 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, 90.1341, 10] + [ ecalVeto ] 0 : Hit 1: [59.2627, 85.9634, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, 29.1946, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5371.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4417 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3377.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4418 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -215.254, 17] + [ ecalVeto ] 0 : Hit 1: [-117.053, -211.083, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [61.6707, 115.158, 16] + [ ecalVeto ] 0 : Hit 1: [59.2627, 110.987, 15] + [ ecalVeto ] 0 : Hit 2: [61.6707, 106.817, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -29.1946, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5083.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4419 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4102.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4420 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3262.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4421 Brem photon produced 64 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4924.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4422 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 91.7545, 4] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 87.5839, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4193.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4423 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 25 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2792.6; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4424 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4931.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4425 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4356.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4426 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4513.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4427 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 66.7306, 23] + [ ecalVeto ] 0 : Hit 1: [-116.118, 62.5599, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 41.7066, 18] + [ ecalVeto ] 0 : Hit 1: [-69.83, 37.5359, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4315.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4428 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5320.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4429 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, -94.3048, 29] + [ ecalVeto ] 0 : Hit 1: [-109.829, -90.1341, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, -81.7928, 27] + [ ecalVeto ] 0 : Hit 1: [-102.606, -77.6221, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -77.6221, 25] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -73.4515, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -69.2808, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -65.1101, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -65.1101, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -60.9395, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2031.81; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4430 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2894.25; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4431 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7173.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4432 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 12 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-234.106, 8.34132, 31] + [ ecalVeto ] 0 : Hit 1: [-231.698, 4.17066, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-219.659, 8.34132, 29] + [ ecalVeto ] 0 : Hit 1: [-217.251, 4.17066, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-205.211, 8.34132, 27] + [ ecalVeto ] 0 : Hit 1: [-202.803, 4.17066, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-154.644, 4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-152.237, 8.34132, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-140.197, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-137.789, 8.34132, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [141.132, 94.3048, 16] + [ ecalVeto ] 0 : Hit 1: [138.725, 98.4754, 15] + [ ecalVeto ] 0 : Hit 2: [141.132, 102.646, 14] + [ ecalVeto ] 0 : Hit 3: [138.725, 106.817, 13] + [ ecalVeto ] 0 : Hit 4: [141.132, 110.987, 12] + [ ecalVeto ] 0 : Hit 5: [138.725, 115.158, 11] + [ ecalVeto ] 0 : Hit 6: [141.132, 119.329, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-104.078, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, 4.17066, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 12 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5563.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4433 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4571.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4434 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4140.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4435 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 7: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Hit 9: [2.40793, -37.5359, 1] + [ ecalVeto ] 0 : Hit 10: [4.81586, -41.7066, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 8: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8421.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4436 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -223.595, 27] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -219.425, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -202.742, 25] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -198.571, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5423.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4437 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4020.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4438 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 16] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 15] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4964.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4439 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, 50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 45.8773, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 45.8773, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 37.5359, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 62.5599, 5] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 58.3892, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5768.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4440 Brem photon produced 76 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 20] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 19] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 17] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 10: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 11: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 12: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7313.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4441 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3901.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4442 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -79.2426, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -75.0719, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -70.9012, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -66.7306, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3532.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4443 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 79.2426, 22] + [ ecalVeto ] 0 : Hit 1: [9.63173, 75.0719, 21] + [ ecalVeto ] 0 : Hit 2: [12.0397, 79.2426, 20] + [ ecalVeto ] 0 : Hit 3: [9.63173, 75.0719, 19] + [ ecalVeto ] 0 : Hit 4: [12.0397, 70.9012, 18] + [ ecalVeto ] 0 : Hit 5: [9.63173, 66.7306, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 20] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 19] + [ ecalVeto ] 0 : Hit 3: [19.2635, 33.3653, 18] + [ ecalVeto ] 0 : Hit 4: [16.8555, 37.5359, 17] + [ ecalVeto ] 0 : Hit 5: [19.2635, 41.7066, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, 66.7306, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, 62.5599, 13] + [ ecalVeto ] 0 : Hit 4: [2.40793, 62.5599, 11] + [ ecalVeto ] 0 : Hit 5: [4.81586, 58.3892, 10] + [ ecalVeto ] 0 : Hit 6: [2.40793, 54.2186, 9] + [ ecalVeto ] 0 : Hit 7: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 10: [4.81586, 50.0479, 4] + [ ecalVeto ] 0 : Hit 11: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 11: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Hit 12: [-2.40793, 37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4448.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4444 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 6: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 9: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 10: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 11: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 12: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 13: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4135.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4445 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -16.6826, 24] + [ ecalVeto ] 0 : Hit 1: [45.7507, -20.8533, 23] + [ ecalVeto ] 0 : Hit 2: [48.1586, -16.6826, 22] + [ ecalVeto ] 0 : Hit 3: [45.7507, -20.8533, 21] + [ ecalVeto ] 0 : Hit 4: [45.7507, -20.8533, 19] + [ ecalVeto ] 0 : Hit 5: [40.9348, -20.8533, 20] + [ ecalVeto ] 0 : Hit 6: [40.9348, -20.8533, 18] + [ ecalVeto ] 0 : Hit 7: [38.5269, -16.6826, 17] + [ ecalVeto ] 0 : Hit 8: [40.9348, -20.8533, 16] + [ ecalVeto ] 0 : Hit 9: [38.5269, -16.6826, 15] + [ ecalVeto ] 0 : Hit 10: [40.9348, -12.512, 14] + [ ecalVeto ] 0 : Hit 11: [38.5269, -16.6826, 13] + [ ecalVeto ] 0 : Hit 12: [40.9348, -12.512, 12] + [ ecalVeto ] 0 : Hit 13: [38.5269, -16.6826, 11] + [ ecalVeto ] 0 : Hit 14: [40.9348, -12.512, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-183.54, -54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-181.132, -58.3892, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-137.789, -41.7066, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-125.749, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-123.341, -41.7066, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -29.1946, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-69.83, -29.1946, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 1] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5968.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4446 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, 65.1101, 30] + [ ecalVeto ] 0 : Hit 1: [76.1183, 65.1101, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -94.3048, 10] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -90.1341, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4118.38; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4447 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, 131.841, 19] + [ ecalVeto ] 0 : Hit 1: [-117.053, 127.67, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, -16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 7: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5729.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4448 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-94.4462, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [-96.8541, 37.5359, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4358.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4449 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5022.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4450 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5061.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4451 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -148.523, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, -144.353, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -136.011, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -140.182, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -131.841, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -127.67, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3357.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4452 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 28] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 27] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 26] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 25] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 24] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 23] + [ ecalVeto ] 0 : Hit 6: [12.0397, 29.1946, 22] + [ ecalVeto ] 0 : Hit 7: [9.63173, 25.024, 21] + [ ecalVeto ] 0 : Hit 8: [9.63173, 25.024, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 8: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 9: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 10: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 11: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -4.17066, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5858.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4453 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [33.711, 8.34132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9968.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4454 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, 25.024, 22] + [ ecalVeto ] 0 : Hit 1: [60.1983, 29.1946, 21] + [ ecalVeto ] 0 : Hit 2: [62.6062, 33.3653, 20] + [ ecalVeto ] 0 : Hit 3: [60.1983, 29.1946, 19] + [ ecalVeto ] 0 : Hit 4: [60.1983, 29.1946, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-33.711, 25.024, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5893; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4455 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4295.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4456 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 6: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Hit 7: [19.2635, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 19 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1182.96; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4457 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 10: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 11: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Hit 12: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Hit 13: [2.40793, -4.17066, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5826.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4458 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.34348, -194.401, 1] + [ ecalVeto ] 0 : Hit 1: [3.88031, -190.23, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 609.233; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4459 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [119.461, -140.182, 2] + [ ecalVeto ] 0 : Hit 1: [117.053, -136.011, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5131.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4460 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -12.512, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-60.1983, -20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [-62.6062, -16.6826, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7905.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4461 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -95.9252, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -91.7545, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -87.5839, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 136 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4951.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4462 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5670.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4463 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [45.7507, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [48.1586, -50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [45.7507, -54.2186, 7] + [ ecalVeto ] 0 : Hit 3: [48.1586, -58.3892, 6] + [ ecalVeto ] 0 : Hit 4: [55.3824, -54.2186, 8] + [ ecalVeto ] 0 : Hit 5: [52.9745, -50.0479, 7] + [ ecalVeto ] 0 : Hit 6: [55.3824, -54.2186, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, -45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [33.711, -50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [31.3031, -45.8773, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5150.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4464 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 70.9012, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 75.0719, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7030.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4465 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -152.694, 15] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -148.523, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7016.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4466 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 54.2186, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 50.0479, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 45.8773, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 70.9012, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, 75.0719, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, 70.9012, 3] + [ ecalVeto ] 0 : Hit 3: [19.2635, 75.0719, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3550.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4467 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.039, -115.158, 22] + [ ecalVeto ] 0 : Hit 1: [-54.4469, -110.987, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 54.2186, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [3.34348, -136.011, 7] + [ ecalVeto ] 0 : Hit 1: [3.88031, -140.182, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5486.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4468 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -85.9634, 26] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -81.7928, 25] + [ ecalVeto ] 0 : Hit 2: [-44.8152, -77.6221, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -66.7306, 22] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -62.5599, 21] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -58.3892, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-148.356, 123.499, 17] + [ ecalVeto ] 0 : Hit 1: [-145.948, 119.329, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-126.685, 110.987, 15] + [ ecalVeto ] 0 : Hit 1: [-124.277, 106.817, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 109 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5069.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4469 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4469 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -110.987, 25] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -115.158, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 10] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -58.3892, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -29.1946, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4159.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4470 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-125.749, 62.5599, 25] + [ ecalVeto ] 0 : Hit 1: [-123.341, 66.7306, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [141.132, -119.329, 24] + [ ecalVeto ] 0 : Hit 1: [138.725, -115.158, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-52.039, 73.4515, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 58.3892, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 62.5599, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 58.3892, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5556.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4471 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 7: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 45.8773, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 79.2426, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 83.4132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 62.5599, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -8.34132, 4] + [ ecalVeto ] 0 : Hit 1: [-69.83, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6798.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4472 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, -29.1946, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 54.2186, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6111.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4473 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 54.2186, 26] + [ ecalVeto ] 0 : Hit 1: [38.5269, 58.3892, 25] + [ ecalVeto ] 0 : Hit 2: [40.9348, 54.2186, 24] + [ ecalVeto ] 0 : Hit 3: [38.5269, 58.3892, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 58.3892, 22] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 21] + [ ecalVeto ] 0 : Hit 2: [33.711, 50.0479, 20] + [ ecalVeto ] 0 : Hit 3: [31.3031, 45.8773, 19] + [ ecalVeto ] 0 : Hit 4: [33.711, 41.7066, 18] + [ ecalVeto ] 0 : Hit 5: [31.3031, 37.5359, 17] + [ ecalVeto ] 0 : Hit 6: [33.711, 33.3653, 16] + [ ecalVeto ] 0 : Hit 7: [31.3031, 29.1946, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 62.5599, 22] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 21] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [2.40793, 54.2186, 17] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 16] + [ ecalVeto ] 0 : Hit 4: [2.40793, 45.8773, 15] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 14] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 13] + [ ecalVeto ] 0 : Hit 7: [4.81586, 33.3653, 12] + [ ecalVeto ] 0 : Hit 8: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 9: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 10: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 11: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 12: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 13: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 14: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 15: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 16: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 17: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 18: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 19: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, 20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, 25.024, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, 8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6227.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4474 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, -2.36672e-14, 11] + [ ecalVeto ] 0 : Hit 1: [-130.565, 4.17066, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5429.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4475 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4874.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4476 Brem photon produced 63 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4649.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4477 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4081.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4478 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 9: [2.40793, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3608.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4479 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, -29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-166.684, -25.024, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, -25.024, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [33.711, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [31.3031, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [33.711, -25.024, 4] + [ ecalVeto ] 0 : Hit 4: [31.3031, -20.8533, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 2] + [ ecalVeto ] 0 : Hit 4: [16.8555, -20.8533, 1] + [ ecalVeto ] 0 : Hit 5: [19.2635, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4181.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4480 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -110.987, 28] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -106.817, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -90.1341, 26] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -85.9634, 25] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -83.4132, 24] + [ ecalVeto ] 0 : Hit 3: [-26.4873, -79.2426, 25] + [ ecalVeto ] 0 : Hit 4: [-24.0793, -75.0719, 24] + [ ecalVeto ] 0 : Hit 5: [-26.4873, -70.9012, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -94.3048, 26] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -90.1341, 25] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -16.6826, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2099.94; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4481 Brem photon produced 78 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5326.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4482 Brem photon produced 71 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2115.97; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4483 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -148.523, 23] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -152.694, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 20] + [ ecalVeto ] 0 : Hit 2: [-55.3824, 37.5359, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-60.1983, 37.5359, 18] + [ ecalVeto ] 0 : Hit 1: [-62.6062, 33.3653, 17] + [ ecalVeto ] 0 : Hit 2: [-60.1983, 29.1946, 16] + [ ecalVeto ] 0 : Hit 3: [-62.6062, 25.024, 15] + [ ecalVeto ] 0 : Hit 4: [-60.1983, 20.8533, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -12.512, 4] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4354.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4484 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 27 + [ ecalVeto ] 0 : Beginning track merging using 27 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 27 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -161.035, 31] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -156.865, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -115.158, 27] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -110.987, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -144.353, 25] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -140.182, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -94.3048, 25] + [ ecalVeto ] 0 : Hit 1: [-52.039, -90.1341, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 25] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 24] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -127.67, 23] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -123.499, 22] + [ ecalVeto ] 0 : Hit 2: [-25.5517, -119.329, 21] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 23] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 22] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 4.17066, 19] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -2.66454e-15, 18] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 20] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -106.817, 20] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -102.646, 19] + [ ecalVeto ] 0 : Hit 2: [-23.1438, -98.4754, 18] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 18] + [ ecalVeto ] 0 : Hit 2: [-33.711, -25.024, 17] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -20.8533, 16] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 16] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 70.9012, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 66.7306, 14] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 14] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 14] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 13] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -4.17066, 11] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 54.2186, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 12] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 12] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 12] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 10] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Track 21: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Track 22: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Track 23: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Track 24: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Track 25: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 26: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 27 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8003.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4485 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -45.8773, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5974.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4486 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [133.909, -98.4754, 26] + [ ecalVeto ] 0 : Hit 1: [131.501, -94.3048, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 2] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 1] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4944.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4487 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, -123.499, 22] + [ ecalVeto ] 0 : Hit 1: [15.92, -119.329, 21] + [ ecalVeto ] 0 : Hit 2: [18.3279, -115.158, 20] + [ ecalVeto ] 0 : Hit 3: [15.92, -110.987, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-190.763, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-188.356, 29.1946, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [11.1041, -102.646, 18] + [ ecalVeto ] 0 : Hit 1: [8.69618, -98.4754, 17] + [ ecalVeto ] 0 : Hit 2: [11.1041, -94.3048, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, -91.7545, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5274.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4488 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [81.8697, 33.3653, 25] + [ ecalVeto ] 0 : Hit 1: [84.2776, 29.1946, 24] + [ ecalVeto ] 0 : Hit 2: [81.8697, 25.024, 23] + [ ecalVeto ] 0 : Hit 3: [84.2776, 20.8533, 22] + [ ecalVeto ] 0 : Hit 4: [81.8697, 16.6826, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, -4.17066, 16] + [ ecalVeto ] 0 : Hit 1: [40.9348, -4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [38.5269, -8.34132, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2428.31; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4489 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [54.4469, -102.646, 16] + [ ecalVeto ] 0 : Hit 1: [52.039, -98.4754, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4192.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4490 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, -45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-181.132, -41.7066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 50.0479, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 45.8773, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, 41.7066, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2715.45; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4491 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [8.69618, 131.841, 9] + [ ecalVeto ] 0 : Hit 1: [11.1041, 136.011, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6267.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4492 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 18] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 17] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 16] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4299.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4493 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -83.4132, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -79.2426, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -75.0719, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -70.9012, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -66.7306, 7] + [ ecalVeto ] 0 : Hit 5: [16.8555, -70.9012, 9] + [ ecalVeto ] 0 : Hit 6: [19.2635, -75.0719, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -58.3892, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5152.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4494 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, 4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [16.8555, -12.512, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -69.2808, 1] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -65.1101, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 124 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5087.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4495 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4770.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4496 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 29.1946, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3029; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4497 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, 81.7928, 28] + [ ecalVeto ] 0 : Hit 1: [105.013, 81.7928, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 75.0719, 24] + [ ecalVeto ] 0 : Hit 1: [31.3031, 70.9012, 23] + [ ecalVeto ] 0 : Hit 2: [33.711, 75.0719, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, 54.2186, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, 50.0479, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -62.5599, 18] + [ ecalVeto ] 0 : Hit 1: [-33.711, -58.3892, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, 41.7066, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 12] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -41.7066, 11] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -37.5359, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -16.6826, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -90.1341, 3] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -90.1341, 1] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4014.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4498 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5055.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4499 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 91.7545, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 87.5839, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2872.25; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4500 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 58.3892, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 54.2186, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, 50.0479, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 7: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5385.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4501 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -65.1101, 25] + [ ecalVeto ] 0 : Hit 1: [-102.606, -69.2808, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -60.9395, 23] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -65.1101, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 17] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 16] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 15] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 14] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 6: [2.40793, 29.1946, 11] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 8: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3216.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4502 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 8: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 8: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3836.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4503 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [26.4873, -12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5955.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4504 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 16] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 15] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -37.5359, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4717.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4505 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4505 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [154.644, 62.5599, 24] + [ ecalVeto ] 0 : Hit 1: [152.237, 58.3892, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-190.763, -2.36672e-14, 9] + [ ecalVeto ] 0 : Hit 1: [-188.356, -4.17066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 876.122; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4506 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 7: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 77.6221, 1] + [ ecalVeto ] 0 : Hit 1: [-52.039, 81.7928, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5666.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4507 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 77.6221, 27] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 73.4515, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 58.3892, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 14] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 13] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 16.6826, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3631.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4508 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 20] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 41.7066, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -58.3892, 1] + [ ecalVeto ] 0 : Hit 1: [12.0397, -62.5599, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4699.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4509 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [96.8541, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [94.4462, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2083.03; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4510 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3342.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4511 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [61.6707, 65.1101, 12] + [ ecalVeto ] 0 : Hit 1: [60.1983, 62.5599, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [45.7507, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [45.7507, 45.8773, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 16.6826, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6968.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4512 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4327.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4513 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 186.059, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, 181.889, 22] + [ ecalVeto ] 0 : Hit 2: [-112.237, 177.718, 21] + [ ecalVeto ] 0 : Hit 3: [-109.829, 173.547, 20] + [ ecalVeto ] 0 : Hit 4: [-112.237, 169.377, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, 29.1946, 20] + [ ecalVeto ] 0 : Hit 1: [67.4221, 33.3653, 19] + [ ecalVeto ] 0 : Hit 2: [69.83, 29.1946, 18] + [ ecalVeto ] 0 : Hit 3: [67.4221, 25.024, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4802.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4514 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [39.9993, -102.646, 18] + [ ecalVeto ] 0 : Hit 1: [39.9993, -102.646, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 45.8773, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4778.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4515 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -50.0479, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -45.8773, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4821.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4516 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 148.523, 20] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 144.353, 19] + [ ecalVeto ] 0 : Hit 2: [-8.69618, 140.182, 18] + [ ecalVeto ] 0 : Hit 3: [-11.1041, 136.011, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3259.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4517 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 4.17066, 1] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 8.34132, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 4.17066, 2] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 4.17066, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4590.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4518 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [74.6459, -54.2186, 23] + [ ecalVeto ] 0 : Hit 1: [74.6459, -54.2186, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [52.039, 140.182, 19] + [ ecalVeto ] 0 : Hit 1: [54.4469, 136.011, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -177.718, 6] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -173.547, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-119.461, -165.206, 1] + [ ecalVeto ] 0 : Hit 1: [-117.053, -169.377, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5026.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4519 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-130.565, -54.2186, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-104.078, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-101.67, -37.5359, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -25.024, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 28 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2487.03; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4520 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5458.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4521 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -62.5599, 24] + [ ecalVeto ] 0 : Hit 1: [9.63173, -58.3892, 23] + [ ecalVeto ] 0 : Hit 2: [12.0397, -54.2186, 22] + [ ecalVeto ] 0 : Hit 3: [9.63173, -50.0479, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 19] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 18] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 17] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 16] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5502.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4522 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, -66.7306, 27] + [ ecalVeto ] 0 : Hit 1: [55.3824, -62.5599, 26] + [ ecalVeto ] 0 : Hit 2: [52.9745, -58.3892, 25] + [ ecalVeto ] 0 : Hit 3: [55.3824, -54.2186, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, -33.3653, 20] + [ ecalVeto ] 0 : Hit 1: [45.7507, -29.1946, 19] + [ ecalVeto ] 0 : Hit 2: [48.1586, -25.024, 18] + [ ecalVeto ] 0 : Hit 3: [45.7507, -20.8533, 17] + [ ecalVeto ] 0 : Hit 4: [48.1586, -16.6826, 16] + [ ecalVeto ] 0 : Hit 5: [45.7507, -12.512, 15] + [ ecalVeto ] 0 : Hit 6: [48.1586, -8.34132, 14] + [ ecalVeto ] 0 : Hit 7: [45.7507, -4.17066, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, 4.17066, 18] + [ ecalVeto ] 0 : Hit 1: [38.5269, -2.66454e-15, 17] + [ ecalVeto ] 0 : Hit 2: [40.9348, 4.17066, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -69.2808, 14] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -73.4515, 13] + [ ecalVeto ] 0 : Hit 2: [-76.1183, -73.4515, 11] + [ ecalVeto ] 0 : Hit 3: [-73.7103, -69.2808, 10] + [ ecalVeto ] 0 : Hit 4: [-76.1183, -65.1101, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -94.3048, 13] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -98.4754, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-112.237, -110.987, 13] + [ ecalVeto ] 0 : Hit 1: [-109.829, -115.158, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-80.9341, -81.7928, 12] + [ ecalVeto ] 0 : Hit 1: [-83.3421, -77.6221, 11] + [ ecalVeto ] 0 : Hit 2: [-80.9341, -81.7928, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -90.1341, 11] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -85.9634, 10] + [ ecalVeto ] 0 : Hit 2: [-90.5659, -81.7928, 11] + [ ecalVeto ] 0 : Hit 3: [-88.1579, -77.6221, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -85.9634, 11] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -81.7928, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -58.3892, 9] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -69.2808, 9] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -73.4515, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6317.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4523 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4500.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4524 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, -16.6826, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3141.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4525 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-73.7103, 119.329, 10] + [ ecalVeto ] 0 : Hit 1: [-76.1183, 123.499, 9] + [ ecalVeto ] 0 : Hit 2: [-73.7103, 127.67, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 38 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4120.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4526 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, 50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-159.46, 54.2186, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, 54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-152.237, 50.0479, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -90.1341, 17] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -85.9634, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -77.6221, 15] + [ ecalVeto ] 0 : Hit 1: [-52.039, -73.4515, 14] + [ ecalVeto ] 0 : Hit 2: [-54.4469, -69.2808, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3837.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4527 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3714.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4528 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-102.606, -60.9395, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9093.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4529 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4529 Brem photon produced 62 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6645.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4530 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [161.868, -75.0719, 32] + [ ecalVeto ] 0 : Hit 1: [159.46, -70.9012, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [154.644, -70.9012, 30] + [ ecalVeto ] 0 : Hit 1: [152.237, -66.7306, 29] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [40.9348, -62.5599, 26] + [ ecalVeto ] 0 : Hit 1: [38.5269, -58.3892, 25] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [118.525, -50.0479, 24] + [ ecalVeto ] 0 : Hit 1: [116.118, -45.8773, 23] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, -50.0479, 24] + [ ecalVeto ] 0 : Hit 1: [31.3031, -45.8773, 23] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [96.8541, -37.5359, 20] + [ ecalVeto ] 0 : Hit 1: [94.4462, -33.3653, 19] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 16] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-18.3279, 90.1341, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 87.5839, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3350.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4531 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2716.69; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4532 Brem photon produced 52 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 26] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 25] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 23] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 24] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 22] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 20] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 19] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 18] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 17] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 16] + [ ecalVeto ] 0 : Hit 7: [2.40793, 29.1946, 15] + [ ecalVeto ] 0 : Hit 8: [4.81586, 25.024, 14] + [ ecalVeto ] 0 : Hit 9: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 10: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 11: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 12: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 13: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 14: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 15: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 16: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 17: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 18: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 19: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Hit 20: [2.40793, 20.8533, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2764.77; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4533 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 22] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 54.2186, 21] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 50.0479, 20] + [ ecalVeto ] 0 : Hit 4: [-26.4873, 45.8773, 19] + [ ecalVeto ] 0 : Hit 5: [-24.0793, 41.7066, 18] + [ ecalVeto ] 0 : Hit 6: [-26.4873, 37.5359, 17] + [ ecalVeto ] 0 : Hit 7: [-24.0793, 33.3653, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -73.4515, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -70.9012, 16] + [ ecalVeto ] 0 : Hit 2: [-47.2231, -73.4515, 15] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -70.9012, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 13] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 16.6826, 11] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 5: [-19.2635, 8.34132, 9] + [ ecalVeto ] 0 : Hit 6: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -20.8533, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 2] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3577.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4534 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4534 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4986.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4535 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [76.1183, 148.523, 22] + [ ecalVeto ] 0 : Hit 1: [73.7103, 144.353, 21] + [ ecalVeto ] 0 : Hit 2: [76.1183, 140.182, 20] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2009.07; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4536 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8651.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4537 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -54.2186, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, -50.0479, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5030.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4538 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [60.1983, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [62.6062, -16.6826, 16] + [ ecalVeto ] 0 : Hit 2: [62.6062, -16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [60.1983, -20.8533, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6299.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4539 Brem photon produced 65 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5379.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4540 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [88.1579, 69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [88.1579, 69.2808, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [-69.83, -12.512, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [33.711, 50.0479, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5946.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4541 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, 4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [48.1586, 8.34132, 20] + [ ecalVeto ] 0 : Hit 2: [45.7507, 4.17066, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6096.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4542 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6717.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4543 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 66.7306, 12] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 62.5599, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 33.3653, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [26.4873, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 116 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7763.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4544 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4023.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4545 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [3.88031, -131.841, 8] + [ ecalVeto ] 0 : Hit 1: [3.34348, -136.011, 7] + [ ecalVeto ] 0 : Hit 2: [3.34348, -136.011, 5] + [ ecalVeto ] 0 : Hit 3: [3.88031, -140.182, 4] + [ ecalVeto ] 0 : Hit 4: [3.34348, -144.353, 3] + [ ecalVeto ] 0 : Hit 5: [3.88031, -148.523, 2] + [ ecalVeto ] 0 : Hit 6: [3.34348, -144.353, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6636.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4546 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 58.3892, 24] + [ ecalVeto ] 0 : Hit 1: [45.7507, 54.2186, 23] + [ ecalVeto ] 0 : Hit 2: [48.1586, 50.0479, 22] + [ ecalVeto ] 0 : Hit 3: [45.7507, 45.8773, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [40.9348, 45.8773, 20] + [ ecalVeto ] 0 : Hit 1: [38.5269, 41.7066, 19] + [ ecalVeto ] 0 : Hit 2: [40.9348, 37.5359, 18] + [ ecalVeto ] 0 : Hit 3: [38.5269, 33.3653, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1613.22; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4547 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-104.078, -58.3892, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, -60.9395, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5311.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4548 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-140.197, -79.2426, 21] + [ ecalVeto ] 0 : Hit 1: [-137.789, -75.0719, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-109.829, -65.1101, 18] + [ ecalVeto ] 0 : Hit 1: [-109.829, -65.1101, 16] + [ ecalVeto ] 0 : Hit 2: [-105.013, -65.1101, 17] + [ ecalVeto ] 0 : Hit 3: [-102.606, -60.9395, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-66.4865, -90.1341, 14] + [ ecalVeto ] 0 : Hit 1: [-68.8945, -85.9634, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -69.2808, 13] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -73.4515, 12] + [ ecalVeto ] 0 : Hit 2: [-68.8945, -77.6221, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -58.3892, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4131.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4549 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -127.67, 13] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -123.499, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -110.987, 11] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -106.817, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -98.4754, 9] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -94.3048, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3596.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4550 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -12.512, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, -37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, -41.7066, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3050.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4551 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 115.158, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 110.987, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4903.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4552 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [124.277, 123.499, 25] + [ ecalVeto ] 0 : Hit 1: [124.277, 123.499, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-152.237, 83.4132, 18] + [ ecalVeto ] 0 : Hit 1: [-154.644, 79.2426, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 45 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2453.76; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4553 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-109.829, -198.571, 26] + [ ecalVeto ] 0 : Hit 1: [-112.237, -194.401, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-102.606, -211.083, 26] + [ ecalVeto ] 0 : Hit 1: [-105.013, -206.913, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-109.829, -215.254, 26] + [ ecalVeto ] 0 : Hit 1: [-112.237, -211.083, 25] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-105.013, -181.889, 25] + [ ecalVeto ] 0 : Hit 1: [-102.606, -186.059, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -102.646, 15] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -98.4754, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [40.9348, 45.8773, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, 41.7066, 13] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -90.1341, 13] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -85.9634, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [33.711, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, 29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [33.711, 25.024, 10] + [ ecalVeto ] 0 : Hit 3: [31.3031, 20.8533, 9] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2811.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4554 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, -41.7066, 24] + [ ecalVeto ] 0 : Hit 1: [60.1983, -37.5359, 23] + [ ecalVeto ] 0 : Hit 2: [62.6062, -41.7066, 22] + [ ecalVeto ] 0 : Hit 3: [60.1983, -37.5359, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -90.1341, 22] + [ ecalVeto ] 0 : Hit 2: [-25.5517, -85.9634, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5363.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4555 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 136.011, 33] + [ ecalVeto ] 0 : Hit 1: [-138.725, 131.841, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-141.132, 144.353, 33] + [ ecalVeto ] 0 : Hit 1: [-138.725, 140.182, 32] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, 115.158, 27] + [ ecalVeto ] 0 : Hit 1: [-102.606, 119.329, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 110.987, 25] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 106.817, 24] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 102.646, 23] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 98.4754, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 90.1341, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 94.3048, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 81.7928, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 77.6221, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 69.2808, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 66.7306, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 50.0479, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4474.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4556 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6040.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4557 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [89.0935, -4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [89.6303, -8.34132, 20] + [ ecalVeto ] 0 : Hit 2: [89.0935, -4.17066, 19] + [ ecalVeto ] 0 : Hit 3: [89.6303, -2.66454e-15, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, 4.17066, 18] + [ ecalVeto ] 0 : Hit 1: [69.83, 4.17066, 16] + [ ecalVeto ] 0 : Hit 2: [67.4221, 8.34132, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -81.7928, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -8.34132, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -25.024, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5432.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4558 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 20] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 19] + [ ecalVeto ] 0 : Hit 3: [19.2635, 41.7066, 18] + [ ecalVeto ] 0 : Hit 4: [16.8555, 37.5359, 17] + [ ecalVeto ] 0 : Hit 5: [16.8555, 37.5359, 15] + [ ecalVeto ] 0 : Hit 6: [12.0397, 37.5359, 16] + [ ecalVeto ] 0 : Hit 7: [12.0397, 37.5359, 14] + [ ecalVeto ] 0 : Hit 8: [9.63173, 33.3653, 13] + [ ecalVeto ] 0 : Hit 9: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6704.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4559 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [-69.83, -4.17066, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 20.8533, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2986.36; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4560 Brem photon produced 68 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6155.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4561 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4336.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4562 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4562 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 79.2426, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, 75.0719, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5553; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4563 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 45.8773, 16] + [ ecalVeto ] 0 : Hit 1: [38.5269, 41.7066, 15] + [ ecalVeto ] 0 : Hit 2: [40.9348, 37.5359, 14] + [ ecalVeto ] 0 : Hit 3: [38.5269, 33.3653, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 79.2426, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, 75.0719, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, 70.9012, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5961.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4564 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [55.3824, -54.2186, 14] + [ ecalVeto ] 0 : Hit 2: [52.9745, -50.0479, 13] + [ ecalVeto ] 0 : Hit 3: [55.3824, -45.8773, 12] + [ ecalVeto ] 0 : Hit 4: [48.1586, -50.0479, 14] + [ ecalVeto ] 0 : Hit 5: [45.7507, -45.8773, 13] + [ ecalVeto ] 0 : Hit 6: [48.1586, -41.7066, 12] + [ ecalVeto ] 0 : Hit 7: [45.7507, -45.8773, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [38.5269, -50.0479, 13] + [ ecalVeto ] 0 : Hit 2: [40.9348, -45.8773, 12] + [ ecalVeto ] 0 : Hit 3: [38.5269, -41.7066, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4288.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4565 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3470.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4566 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [112.237, -85.9634, 32] + [ ecalVeto ] 0 : Hit 1: [109.829, -81.7928, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2953.97; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4567 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, 106.817, 17] + [ ecalVeto ] 0 : Hit 1: [-131.501, 102.646, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -56.7688, 9] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -60.9395, 8] + [ ecalVeto ] 0 : Hit 2: [-68.8945, -60.9395, 9] + [ ecalVeto ] 0 : Hit 3: [-66.4865, -65.1101, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2186.65; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4568 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3879.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4569 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -75.0719, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -70.9012, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3087.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4570 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 98.4754, 25] + [ ecalVeto ] 0 : Hit 1: [-102.606, 94.3048, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 73.4515, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 69.2808, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 58.3892, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 58.3892, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [45.7507, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [48.1586, -33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [45.7507, -29.1946, 11] + [ ecalVeto ] 0 : Hit 3: [48.1586, -25.024, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [19.2635, 33.3653, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 127 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5177.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4571 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, -60.9395, 18] + [ ecalVeto ] 0 : Hit 1: [67.4221, -58.3892, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 122 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4280.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4572 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6846.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4573 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -148.523, 33] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -144.353, 32] + [ ecalVeto ] 0 : Hit 2: [-3.88031, -140.182, 31] + [ ecalVeto ] 0 : Hit 3: [-1.47238, -136.011, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -95.9252, 23] + [ ecalVeto ] 0 : Hit 1: [4.81586, -91.7545, 22] + [ ecalVeto ] 0 : Hit 2: [2.40793, -87.5839, 21] + [ ecalVeto ] 0 : Hit 3: [4.81586, -83.4132, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [4.81586, -58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [2.40793, -54.2186, 15] + [ ecalVeto ] 0 : Hit 3: [4.81586, -50.0479, 14] + [ ecalVeto ] 0 : Hit 4: [2.40793, -45.8773, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -4.17066, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4106.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4574 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -37.5359, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5767.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4575 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 137 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5705.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4576 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-155.58, -144.353, 23] + [ ecalVeto ] 0 : Hit 1: [-153.172, -148.523, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-148.356, -140.182, 21] + [ ecalVeto ] 0 : Hit 1: [-145.948, -136.011, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-141.132, -136.011, 19] + [ ecalVeto ] 0 : Hit 1: [-138.725, -131.841, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-133.909, -131.841, 17] + [ ecalVeto ] 0 : Hit 1: [-131.501, -127.67, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5121.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4577 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [24.0793, -41.7066, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -62.5599, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7768.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4578 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, -161.035, 22] + [ ecalVeto ] 0 : Hit 1: [23.1438, -156.865, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [18.3279, -156.865, 20] + [ ecalVeto ] 0 : Hit 1: [15.92, -152.694, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5687.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4579 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [97.7897, -85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [95.3817, -81.7928, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5828.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4580 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-133.909, -98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-131.501, -94.3048, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, -85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-109.829, -81.7928, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-119.461, -90.1341, 15] + [ ecalVeto ] 0 : Hit 1: [-117.053, -85.9634, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -54.2186, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5191.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4581 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 22] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 21] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 20] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 19] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 18] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -33.3653, 17] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -29.1946, 16] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -33.3653, 15] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -29.1946, 14] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -33.3653, 13] + [ ecalVeto ] 0 : Hit 11: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 12: [-2.40793, -37.5359, 10] + [ ecalVeto ] 0 : Hit 13: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 14: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -45.8773, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -41.7066, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, -45.8773, 12] + [ ecalVeto ] 0 : Hit 4: [24.0793, -41.7066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -98.4754, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -95.9252, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -91.7545, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -87.5839, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -83.4132, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -79.2426, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -29.1946, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -33.3653, 2] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 3] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3941.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4582 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-73.7103, 94.3048, 24] + [ ecalVeto ] 0 : Hit 1: [-76.1183, 90.1341, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 3] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3970.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4583 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 7: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 9: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 10: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 11: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2256.28; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4584 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 54.2186, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 50.0479, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 54.2186, 6] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 54.2186, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 75.0719, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 70.9012, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5479.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4585 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5250.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4586 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -12.512, 12] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -8.34132, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -45.8773, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [111.302, 62.5599, 4] + [ ecalVeto ] 0 : Hit 1: [109.829, 65.1101, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5609.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4587 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2997.28; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4588 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -62.5599, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 75.0719, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 70.9012, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 66.7306, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 62.5599, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2153.36; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4589 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [11.1041, 110.987, 14] + [ ecalVeto ] 0 : Hit 1: [8.69618, 106.817, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-3.88031, 98.4754, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 95.9252, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4351.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4590 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3361.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4591 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, 77.6221, 26] + [ ecalVeto ] 0 : Hit 1: [66.4865, 73.4515, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -29.1946, 3] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -33.3653, 2] + [ ecalVeto ] 0 : Hit 3: [-40.9348, -29.1946, 1] + [ ecalVeto ] 0 : Hit 4: [-38.5269, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3382.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4592 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [62.6062, -2.66454e-15, 18] + [ ecalVeto ] 0 : Hit 1: [62.6062, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 2: [60.1983, 4.17066, 15] + [ ecalVeto ] 0 : Hit 3: [62.6062, 8.34132, 14] + [ ecalVeto ] 0 : Hit 4: [60.1983, 12.512, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [55.3824, 12.512, 12] + [ ecalVeto ] 0 : Hit 1: [52.9745, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [55.3824, 20.8533, 10] + [ ecalVeto ] 0 : Hit 3: [52.9745, 25.024, 9] + [ ecalVeto ] 0 : Hit 4: [55.3824, 29.1946, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6268.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4593 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -87.5839, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -83.4132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -79.2426, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -75.0719, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, -70.9012, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -62.5599, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -58.3892, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -54.2186, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -50.0479, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5321.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4594 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, 20.8533, 32] + [ ecalVeto ] 0 : Hit 1: [123.341, 16.6826, 31] + [ ecalVeto ] 0 : Hit 2: [123.341, 16.6826, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 91.7545, 23] + [ ecalVeto ] 0 : Hit 1: [12.0397, 87.5839, 22] + [ ecalVeto ] 0 : Hit 2: [9.63173, 83.4132, 21] + [ ecalVeto ] 0 : Hit 3: [12.0397, 79.2426, 20] + [ ecalVeto ] 0 : Hit 4: [9.63173, 75.0719, 19] + [ ecalVeto ] 0 : Hit 5: [12.0397, 70.9012, 18] + [ ecalVeto ] 0 : Hit 6: [9.63173, 66.7306, 17] + [ ecalVeto ] 0 : Hit 7: [12.0397, 62.5599, 16] + [ ecalVeto ] 0 : Hit 8: [9.63173, 58.3892, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [19.2635, 50.0479, 18] + [ ecalVeto ] 0 : Hit 2: [16.8555, 45.8773, 17] + [ ecalVeto ] 0 : Hit 3: [19.2635, 50.0479, 16] + [ ecalVeto ] 0 : Hit 4: [16.8555, 45.8773, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 6: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8787.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4595 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, 41.7066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5023.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4596 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 20.8533, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5780.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4597 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 29.1946, 11] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 33.3653, 10] + [ ecalVeto ] 0 : Hit 4: [-24.0793, 33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 29.1946, 10] + [ ecalVeto ] 0 : Hit 6: [-19.2635, 33.3653, 9] + [ ecalVeto ] 0 : Hit 7: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Hit 8: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 9: [-16.8555, 29.1946, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3093.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4598 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, -16.6826, 29] + [ ecalVeto ] 0 : Hit 1: [-145.013, -20.8533, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -25.024, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -20.8533, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3545.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4599 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, -37.5359, 28] + [ ecalVeto ] 0 : Hit 1: [125.749, -37.5359, 26] + [ ecalVeto ] 0 : Hit 2: [118.525, -33.3653, 28] + [ ecalVeto ] 0 : Hit 3: [116.118, -29.1946, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [111.302, -20.8533, 28] + [ ecalVeto ] 0 : Hit 1: [111.302, -20.8533, 26] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1837.28; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4600 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, 94.3048, 26] + [ ecalVeto ] 0 : Hit 1: [80.9341, 90.1341, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, 58.3892, 16] + [ ecalVeto ] 0 : Hit 1: [45.7507, 54.2186, 15] + [ ecalVeto ] 0 : Hit 2: [48.1586, 50.0479, 14] + [ ecalVeto ] 0 : Hit 3: [45.7507, 45.8773, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [26.4873, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1595.98; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4601 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 83.4132, 22] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 79.2426, 21] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 75.0719, 20] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 70.9012, 19] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 66.7306, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 60.9395, 11] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4841.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4602 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4602 Brem photon produced 91 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5898.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4603 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3822.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4604 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, 50.0479, 29] + [ ecalVeto ] 0 : Hit 1: [-173.908, 45.8773, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [90.5659, -98.4754, 28] + [ ecalVeto ] 0 : Hit 1: [88.1579, -94.3048, 27] + [ ecalVeto ] 0 : Hit 2: [90.5659, -90.1341, 26] + [ ecalVeto ] 0 : Hit 3: [90.5659, -90.1341, 24] + [ ecalVeto ] 0 : Hit 4: [88.1579, -85.9634, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-169.092, 45.8773, 27] + [ ecalVeto ] 0 : Hit 1: [-166.684, 41.7066, 26] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-161.868, 41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [-159.46, 37.5359, 24] + [ ecalVeto ] 0 : Hit 2: [-161.868, 41.7066, 23] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8178.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4605 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [89.6303, -8.34132, 22] + [ ecalVeto ] 0 : Hit 1: [89.0935, -4.17066, 21] + [ ecalVeto ] 0 : Hit 2: [89.6303, -8.34132, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [81.8697, -8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [84.2776, -12.512, 18] + [ ecalVeto ] 0 : Hit 2: [81.8697, -8.34132, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [67.4221, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [69.83, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [67.4221, -25.024, 11] + [ ecalVeto ] 0 : Hit 3: [69.83, -20.8533, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -45.8773, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6813.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4606 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [38.5269, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [40.9348, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [38.5269, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [40.9348, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 27 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2634.64; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4607 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 119.329, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 115.158, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3114.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4608 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5614.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4609 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7499.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4610 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 10: [2.40793, 4.17066, 1] + [ ecalVeto ] 0 : Hit 11: [4.81586, 8.34132, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6284.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4611 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 75.0719, 17] + [ ecalVeto ] 0 : Hit 1: [12.0397, 70.9012, 16] + [ ecalVeto ] 0 : Hit 2: [9.63173, 66.7306, 15] + [ ecalVeto ] 0 : Hit 3: [12.0397, 70.9012, 14] + [ ecalVeto ] 0 : Hit 4: [9.63173, 66.7306, 13] + [ ecalVeto ] 0 : Hit 5: [12.0397, 62.5599, 12] + [ ecalVeto ] 0 : Hit 6: [9.63173, 58.3892, 11] + [ ecalVeto ] 0 : Hit 7: [9.63173, 58.3892, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [18.3279, 131.841, 16] + [ ecalVeto ] 0 : Hit 1: [15.92, 127.67, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [18.3279, 115.158, 14] + [ ecalVeto ] 0 : Hit 1: [15.92, 110.987, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 83.4132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 79.2426, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 75.0719, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 70.9012, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 90.1341, 9] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 85.9634, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 50.0479, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 45.8773, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 70.9012, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 66.7306, 7] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 77.6221, 7] + [ ecalVeto ] 0 : Hit 1: [-52.039, 73.4515, 6] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 58.3892, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 54.2186, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 50.0479, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6138.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4612 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -45.8773, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4542.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4613 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4765.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4614 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [123.341, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3695.25; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4615 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 26] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 25] + [ ecalVeto ] 0 : Hit 2: [19.2635, 33.3653, 24] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 23] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 22] + [ ecalVeto ] 0 : Hit 5: [16.8555, 29.1946, 21] + [ ecalVeto ] 0 : Hit 6: [19.2635, 25.024, 20] + [ ecalVeto ] 0 : Hit 7: [16.8555, 20.8533, 19] + [ ecalVeto ] 0 : Hit 8: [19.2635, 16.6826, 18] + [ ecalVeto ] 0 : Hit 9: [16.8555, 12.512, 17] + [ ecalVeto ] 0 : Hit 10: [19.2635, 8.34132, 16] + [ ecalVeto ] 0 : Hit 11: [19.2635, 8.34132, 14] + [ ecalVeto ] 0 : Hit 12: [16.8555, 4.17066, 13] + [ ecalVeto ] 0 : Hit 13: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [68.8945, -119.329, 20] + [ ecalVeto ] 0 : Hit 1: [66.4865, -115.158, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2639.6; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4616 Brem photon produced 76 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 75.0719, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 70.9012, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 66.7306, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 62.5599, 14] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 58.3892, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5531.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4617 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4617 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, -85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [66.4865, -81.7928, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4164.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4618 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [169.092, 29.1946, 16] + [ ecalVeto ] 0 : Hit 1: [166.684, 33.3653, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [69.83, 54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [69.83, 54.2186, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3882.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4619 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, -85.9634, 28] + [ ecalVeto ] 0 : Hit 1: [80.9341, -81.7928, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, -20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-137.789, -16.6826, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -54.2186, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, -50.0479, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -37.5359, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3288.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4620 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [-69.83, 37.5359, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-33.711, 8.34132, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 12.512, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 29.1946, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5944.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4621 Brem photon produced 54 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6129.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4622 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-119.461, -106.817, 23] + [ ecalVeto ] 0 : Hit 1: [-117.053, -102.646, 22] + [ ecalVeto ] 0 : Hit 2: [-119.461, -98.4754, 21] + [ ecalVeto ] 0 : Hit 3: [-117.053, -94.3048, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-119.461, -81.7928, 19] + [ ecalVeto ] 0 : Hit 1: [-117.053, -77.6221, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -102.646, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -98.4754, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -85.9634, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -81.7928, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4627.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4623 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, -41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [-159.46, -45.8773, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, -41.7066, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [-74.6459, -37.5359, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-60.1983, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -33.3653, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-33.711, -33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3231.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4624 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-52.039, 90.1341, 26] + [ ecalVeto ] 0 : Hit 1: [-54.4469, 85.9634, 25] + [ ecalVeto ] 0 : Hit 2: [-52.039, 81.7928, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [8.69618, 115.158, 25] + [ ecalVeto ] 0 : Hit 1: [11.1041, 119.329, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 66.7306, 21] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 62.5599, 20] + [ ecalVeto ] 0 : Hit 2: [-48.1586, 58.3892, 19] + [ ecalVeto ] 0 : Hit 3: [-45.7507, 54.2186, 18] + [ ecalVeto ] 0 : Hit 4: [-48.1586, 50.0479, 17] + [ ecalVeto ] 0 : Hit 5: [-45.7507, 45.8773, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4737.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4625 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, 94.3048, 28] + [ ecalVeto ] 0 : Hit 1: [23.1438, 98.4754, 27] + [ ecalVeto ] 0 : Hit 2: [25.5517, 94.3048, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, 87.5839, 25] + [ ecalVeto ] 0 : Hit 1: [19.2635, 83.4132, 24] + [ ecalVeto ] 0 : Hit 2: [16.8555, 79.2426, 23] + [ ecalVeto ] 0 : Hit 3: [19.2635, 75.0719, 22] + [ ecalVeto ] 0 : Hit 4: [16.8555, 70.9012, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [60.1983, 37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [62.6062, 41.7066, 20] + [ ecalVeto ] 0 : Hit 2: [60.1983, 37.5359, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 62.5599, 20] + [ ecalVeto ] 0 : Hit 1: [12.0397, 62.5599, 18] + [ ecalVeto ] 0 : Hit 2: [9.63173, 58.3892, 17] + [ ecalVeto ] 0 : Hit 3: [12.0397, 54.2186, 16] + [ ecalVeto ] 0 : Hit 4: [9.63173, 50.0479, 15] + [ ecalVeto ] 0 : Hit 5: [12.0397, 45.8773, 14] + [ ecalVeto ] 0 : Hit 6: [9.63173, 41.7066, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 7: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4061.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4626 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, -98.4754, 16] + [ ecalVeto ] 0 : Hit 1: [15.92, -94.3048, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3398.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4627 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [132.973, 8.34132, 22] + [ ecalVeto ] 0 : Hit 1: [130.565, 4.17066, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [118.525, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 1: [116.118, -4.17066, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -70.9012, 17] + [ ecalVeto ] 0 : Hit 1: [2.40793, -70.9012, 15] + [ ecalVeto ] 0 : Hit 2: [4.81586, -75.0719, 14] + [ ecalVeto ] 0 : Hit 3: [2.40793, -70.9012, 13] + [ ecalVeto ] 0 : Hit 4: [4.81586, -66.7306, 12] + [ ecalVeto ] 0 : Hit 5: [2.40793, -70.9012, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -70.9012, 16] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -75.0719, 15] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -70.9012, 14] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -66.7306, 13] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -62.5599, 12] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -66.7306, 11] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -70.9012, 10] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -66.7306, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2382.74; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4628 Brem photon produced 90 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, 50.0479, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5403.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4629 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -33.3653, 24] + [ ecalVeto ] 0 : Hit 1: [31.3031, -37.5359, 23] + [ ecalVeto ] 0 : Hit 2: [33.711, -41.7066, 22] + [ ecalVeto ] 0 : Hit 3: [31.3031, -37.5359, 21] + [ ecalVeto ] 0 : Hit 4: [33.711, -33.3653, 20] + [ ecalVeto ] 0 : Hit 5: [31.3031, -29.1946, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, -12.512, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, -8.34132, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 4: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 7: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4555.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4630 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -79.2426, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -75.0719, 9] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -79.2426, 8] + [ ecalVeto ] 0 : Hit 3: [-19.2635, -83.4132, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -94.3048, 9] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -98.4754, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -58.3892, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6143.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4631 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 81.7928, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 79.2426, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 66.7306, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 62.5599, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4841.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4632 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 33.3653, 22] + [ ecalVeto ] 0 : Hit 2: [-77.0538, 33.3653, 23] + [ ecalVeto ] 0 : Hit 3: [-74.6459, 29.1946, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 37.5359, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 29.1946, 21] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 25.024, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [61.6707, -98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [59.2627, -102.646, 19] + [ ecalVeto ] 0 : Hit 2: [61.6707, -98.4754, 18] + [ ecalVeto ] 0 : Hit 3: [59.2627, -102.646, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 16.6826, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 4.17066, 13] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4575.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4633 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -219.425, 31] + [ ecalVeto ] 0 : Hit 1: [-52.039, -223.595, 30] + [ ecalVeto ] 0 : Hit 2: [-54.4469, -219.425, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -98.4754, 18] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -94.3048, 17] + [ ecalVeto ] 0 : Hit 2: [-23.1438, -90.1341, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4904.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4634 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -69.2808, 25] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -66.7306, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -66.7306, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3519.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4635 Brem photon produced 73 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3870.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4636 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, -54.2186, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, -50.0479, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, -45.8773, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, -41.7066, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-130.565, 29.1946, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-116.118, 29.1946, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4794.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4637 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2438.39; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4638 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, 119.329, 30] + [ ecalVeto ] 0 : Hit 1: [-18.3279, 115.158, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 21] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 58.3892, 20] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 54.2186, 19] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 50.0479, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5569.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4639 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 85.9634, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 69.2808, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 65.1101, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [67.4221, -41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [67.4221, -41.7066, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 115 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6184.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4640 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4493.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4641 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -91.7545, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -87.5839, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -83.4132, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -79.2426, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -79.2426, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -75.0719, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5418.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4642 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, -127.67, 25] + [ ecalVeto ] 0 : Hit 1: [-138.725, -123.499, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, -110.987, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, -106.817, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-112.237, -102.646, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, -98.4754, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [105.013, 73.4515, 20] + [ ecalVeto ] 0 : Hit 1: [102.606, 69.2808, 19] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -90.1341, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [112.237, 110.987, 18] + [ ecalVeto ] 0 : Hit 1: [109.829, 106.817, 17] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -69.2808, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -65.1101, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -62.5599, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4487.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4643 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -136.011, 13] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -131.841, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Hit 7: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6003.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4644 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [-19.2635, -16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [-16.8555, -12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7232.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4645 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, 29.1946, 6] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Hit 7: [19.2635, 33.3653, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7042.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4646 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -127.67, 22] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -123.499, 21] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5325.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4647 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-197.987, -4.17066, 31] + [ ecalVeto ] 0 : Hit 1: [-195.579, -8.34132, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, -8.34132, 27] + [ ecalVeto ] 0 : Hit 1: [-159.46, -12.512, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-94.4462, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-96.8541, -20.8533, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2494.77; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4648 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 14] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7010.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4649 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 32] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 30] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 29] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 31] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 29] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 28] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 29] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -45.8773, 28] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 28] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 27] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 27] + [ ecalVeto ] 0 : Hit 1: [33.711, -8.34132, 26] + [ ecalVeto ] 0 : Hit 2: [31.3031, -4.17066, 25] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2035.5; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4650 Brem photon produced 82 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3637.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4651 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4915.16; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4652 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [125.749, 62.5599, 28] + [ ecalVeto ] 0 : Hit 1: [123.341, 58.3892, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1973.39; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4653 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4464.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4654 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -66.7306, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6429.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4655 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 81.7928, 9] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 85.9634, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6166.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4656 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -8.34132, 3] + [ ecalVeto ] 0 : Hit 1: [26.4873, -4.17066, 2] + [ ecalVeto ] 0 : Hit 2: [24.0793, -8.34132, 1] + [ ecalVeto ] 0 : Hit 3: [26.4873, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8513.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4657 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4688.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4658 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6311.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4659 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, 20.8533, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, 25.024, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, 20.8533, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, 75.0719, 20] + [ ecalVeto ] 0 : Hit 1: [19.2635, 75.0719, 18] + [ ecalVeto ] 0 : Hit 2: [16.8555, 70.9012, 17] + [ ecalVeto ] 0 : Hit 3: [19.2635, 66.7306, 16] + [ ecalVeto ] 0 : Hit 4: [16.8555, 62.5599, 15] + [ ecalVeto ] 0 : Hit 5: [19.2635, 58.3892, 14] + [ ecalVeto ] 0 : Hit 6: [16.8555, 54.2186, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 25.024, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [16.8555, 29.1946, 7] + [ ecalVeto ] 0 : Hit 4: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 5: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 6: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 7: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 8: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 9: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 10: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4699.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4660 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -65.1101, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -62.5599, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -54.2186, 9] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -50.0479, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-48.1586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-45.7507, -45.8773, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10049.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4661 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-108.894, 8.34132, 22] + [ ecalVeto ] 0 : Hit 1: [-111.302, 12.512, 21] + [ ecalVeto ] 0 : Hit 2: [-108.894, 16.6826, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 33.3653, 8] + [ ecalVeto ] 0 : Hit 4: [19.2635, 33.3653, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, 50.0479, 6] + [ ecalVeto ] 0 : Hit 4: [16.8555, 45.8773, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4580.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4662 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3605.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4663 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6142.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4664 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [12.0397, -54.2186, 18] + [ ecalVeto ] 0 : Hit 2: [9.63173, -50.0479, 17] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [76.1183, -98.4754, 4] + [ ecalVeto ] 0 : Hit 1: [73.7103, -94.3048, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4397.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4665 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 33.3653, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7862; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4666 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 3] + [ ecalVeto ] 0 : Hit 1: [-33.711, 41.7066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3993.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4667 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3479.42; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4668 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 119.329, 17] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 115.158, 16] + [ ecalVeto ] 0 : Hit 2: [-25.5517, 110.987, 15] + [ ecalVeto ] 0 : Hit 3: [-23.1438, 106.817, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 83.4132, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 79.2426, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 75.0719, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 70.9012, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4422.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4669 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-130.565, -54.2186, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, -50.0479, 17] + [ ecalVeto ] 0 : Hit 1: [-116.118, -54.2186, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, -54.2186, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -45.8773, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 8] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3710.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4670 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4689.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4671 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -4.17066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [83.3421, 102.646, 4] + [ ecalVeto ] 0 : Hit 1: [80.9341, 98.4754, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6234.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4672 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, 173.547, 27] + [ ecalVeto ] 0 : Hit 1: [-1.47238, 169.377, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1134.68; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4673 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -98.4754, 23] + [ ecalVeto ] 0 : Hit 1: [-15.92, -102.646, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 91.7545, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 87.5839, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 83.4132, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 79.2426, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -37.5359, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4586.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4674 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4453.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4675 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, -62.5599, 21] + [ ecalVeto ] 0 : Hit 1: [45.7507, -62.5599, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [31.3031, -70.9012, 17] + [ ecalVeto ] 0 : Hit 1: [33.711, -66.7306, 16] + [ ecalVeto ] 0 : Hit 2: [33.711, -66.7306, 14] + [ ecalVeto ] 0 : Hit 3: [40.9348, -62.5599, 16] + [ ecalVeto ] 0 : Hit 4: [40.9348, -62.5599, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -58.3892, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -102.646, 7] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -106.817, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 129 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7829.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4676 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 13 + [ ecalVeto ] 0 : Beginning track merging using 13 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 13 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -90.1341, 25] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -94.3048, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-141.132, -94.3048, 25] + [ ecalVeto ] 0 : Hit 1: [-138.725, -90.1341, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-8.69618, 181.889, 24] + [ ecalVeto ] 0 : Hit 1: [-11.1041, 177.718, 23] + [ ecalVeto ] 0 : Hit 2: [-8.69618, 181.889, 22] + [ ecalVeto ] 0 : Hit 3: [-11.1041, 177.718, 21] + [ ecalVeto ] 0 : Hit 4: [-8.69618, 173.547, 20] + [ ecalVeto ] 0 : Hit 5: [-11.1041, 169.377, 19] + [ ecalVeto ] 0 : Hit 6: [-8.69618, 173.547, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-133.909, -90.1341, 23] + [ ecalVeto ] 0 : Hit 1: [-131.501, -85.9634, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -90.1341, 21] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -94.3048, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-126.685, -77.6221, 21] + [ ecalVeto ] 0 : Hit 1: [-124.277, -73.4515, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -90.1341, 19] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -94.3048, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -98.4754, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-104.078, -58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, -54.2186, 16] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -90.1341, 16] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -85.9634, 15] + [ ecalVeto ] 0 : Hit 2: [-37.5914, -81.7928, 14] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 12] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 13 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4727.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4677 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-117.053, 69.2808, 28] + [ ecalVeto ] 0 : Hit 1: [-119.461, 73.4515, 27] + [ ecalVeto ] 0 : Hit 2: [-117.053, 77.6221, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-105.013, 73.4515, 25] + [ ecalVeto ] 0 : Hit 1: [-102.606, 69.2808, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 52.5982, 21] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 50.0479, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 25.024, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -90.1341, 10] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -90.1341, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3379.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4678 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 79.2426, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 75.0719, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4027.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4679 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [-24.0793, -8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4473.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4680 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4912.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4681 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4721.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4682 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 144.353, 33] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 140.182, 32] + [ ecalVeto ] 0 : Hit 2: [-39.9993, 136.011, 31] + [ ecalVeto ] 0 : Hit 3: [-37.5914, 131.841, 30] + [ ecalVeto ] 0 : Hit 4: [-39.9993, 127.67, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 115.158, 28] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 110.987, 27] + [ ecalVeto ] 0 : Hit 2: [-37.5914, 106.817, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 90.1341, 23] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 85.9634, 22] + [ ecalVeto ] 0 : Hit 2: [-32.7755, 81.7928, 21] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 79.2426, 20] + [ ecalVeto ] 0 : Hit 4: [-33.711, 75.0719, 19] + [ ecalVeto ] 0 : Hit 5: [-31.3031, 70.9012, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 16] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 54.2186, 15] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 50.0479, 14] + [ ecalVeto ] 0 : Hit 4: [-26.4873, 45.8773, 13] + [ ecalVeto ] 0 : Hit 5: [-24.0793, 41.7066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -50.0479, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [68.8945, -127.67, 8] + [ ecalVeto ] 0 : Hit 1: [68.8945, -127.67, 6] + [ ecalVeto ] 0 : Hit 2: [66.4865, -123.499, 5] + [ ecalVeto ] 0 : Hit 3: [68.8945, -119.329, 4] + [ ecalVeto ] 0 : Hit 4: [66.4865, -123.499, 3] + [ ecalVeto ] 0 : Hit 5: [68.8945, -119.329, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4001.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4683 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4308; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4684 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [147.421, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [145.013, -20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5705.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4685 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -77.6221, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -70.9012, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -58.3892, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -75.0719, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -70.9012, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [19.2635, -25.024, 2] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -62.5599, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -58.3892, 6] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -66.7306, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -70.9012, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5493.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4686 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 14] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 54.2186, 13] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 50.0479, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 29.1946, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 4.17066, 1] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4708.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4687 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4993.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4688 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5903.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4689 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, -148.523, 23] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -144.353, 22] + [ ecalVeto ] 0 : Hit 2: [-32.7755, -140.182, 21] + [ ecalVeto ] 0 : Hit 3: [-30.3676, -136.011, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -127.67, 19] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -123.499, 18] + [ ecalVeto ] 0 : Hit 2: [-25.5517, -119.329, 17] + [ ecalVeto ] 0 : Hit 3: [-23.1438, -115.158, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3640.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4690 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -29.1946, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6080.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4691 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [44.8152, -211.083, 5] + [ ecalVeto ] 0 : Hit 1: [47.2231, -215.254, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6006.04; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4692 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3563.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4693 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 10 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1108.73; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4694 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-126.685, 136.011, 31] + [ ecalVeto ] 0 : Hit 1: [-124.277, 131.841, 30] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-141.132, 85.9634, 27] + [ ecalVeto ] 0 : Hit 1: [-138.725, 81.7928, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-126.685, 77.6221, 25] + [ ecalVeto ] 0 : Hit 1: [-124.277, 73.4515, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-112.237, 69.2808, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, 65.1101, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-105.013, 65.1101, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, 60.9395, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 56.7688, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 52.5982, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -87.5839, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -91.7545, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 37.5359, 13] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 33.3653, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4070.74; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4695 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [80.9341, 73.4515, 27] + [ ecalVeto ] 0 : Hit 1: [83.3421, 69.2808, 26] + [ ecalVeto ] 0 : Hit 2: [80.9341, 65.1101, 25] + [ ecalVeto ] 0 : Hit 3: [83.3421, 60.9395, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, 50.0479, 23] + [ ecalVeto ] 0 : Hit 1: [-145.013, 45.8773, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-132.973, 50.0479, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, 54.2186, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, 50.0479, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-104.078, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, 45.8773, 14] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2298.8; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4696 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6906.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4697 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [-173.908, -37.5359, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 20] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 19] + [ ecalVeto ] 0 : Hit 3: [12.0397, 20.8533, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 66.7306, 19] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 62.5599, 18] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 58.3892, 17] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 54.2186, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-125.749, -37.5359, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, -41.7066, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [16.8555, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, -2.66454e-15, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5533.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4698 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 119.329, 23] + [ ecalVeto ] 0 : Hit 1: [-138.725, 115.158, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, 110.987, 21] + [ ecalVeto ] 0 : Hit 1: [-124.277, 106.817, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-112.237, 102.646, 19] + [ ecalVeto ] 0 : Hit 1: [-109.829, 98.4754, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 90.1341, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [48.1586, 50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [48.1586, 50.0479, 14] + [ ecalVeto ] 0 : Hit 2: [45.7507, 45.8773, 13] + [ ecalVeto ] 0 : Hit 3: [48.1586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 4: [40.9348, 45.8773, 14] + [ ecalVeto ] 0 : Hit 5: [38.5269, 50.0479, 13] + [ ecalVeto ] 0 : Hit 6: [40.9348, 45.8773, 12] + [ ecalVeto ] 0 : Hit 7: [38.5269, 50.0479, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 85.9634, 15] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 81.7928, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 81.7928, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 77.6221, 11] + [ ecalVeto ] 0 : Hit 1: [-52.039, 73.4515, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 58.3892, 8] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6150.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4699 Brem photon produced 49 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7816.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4700 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 45.8773, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-38.5269, -2.66454e-15, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6488.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4701 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [45.7507, 12.512, 23] + [ ecalVeto ] 0 : Hit 1: [48.1586, 8.34132, 22] + [ ecalVeto ] 0 : Hit 2: [45.7507, 12.512, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [38.5269, 8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [40.9348, 4.17066, 18] + [ ecalVeto ] 0 : Hit 2: [38.5269, 8.34132, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [31.3031, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [33.711, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 2: [31.3031, 4.17066, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 114 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4721.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4702 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, 16.6826, 27] + [ ecalVeto ] 0 : Hit 1: [-161.868, 16.6826, 25] + [ ecalVeto ] 0 : Hit 2: [-159.46, 20.8533, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, 20.8533, 21] + [ ecalVeto ] 0 : Hit 1: [-137.789, 25.024, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, 29.1946, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, 25.024, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, 33.3653, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-104.078, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-101.67, 37.5359, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 45.8773, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 54.2186, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4259.48; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4703 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 18] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 17] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 12.512, 16] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 16.6826, 15] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 12.512, 14] + [ ecalVeto ] 0 : Hit 6: [-19.2635, 16.6826, 13] + [ ecalVeto ] 0 : Hit 7: [-16.8555, 20.8533, 12] + [ ecalVeto ] 0 : Hit 8: [-19.2635, 16.6826, 11] + [ ecalVeto ] 0 : Hit 9: [-16.8555, 12.512, 10] + [ ecalVeto ] 0 : Hit 10: [-12.0397, 12.512, 11] + [ ecalVeto ] 0 : Hit 11: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 12: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 13: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 14: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 16] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 15] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 14] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 13] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 12] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 20.8533, 11] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 16.6826, 10] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 12.512, 9] + [ ecalVeto ] 0 : Hit 9: [-9.63173, 16.6826, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 15] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 12167.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4704 Brem photon produced 51 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -25.024, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -25.024, 2] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -25.024, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4916.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4705 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -98.4754, 9] + [ ecalVeto ] 0 : Hit 1: [-102.606, -102.646, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2735.83; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4706 Brem photon produced 67 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 14] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 13] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 4: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 5: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 6: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 7: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 8: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 9: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -102.646, 10] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -98.4754, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4587.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4707 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -219.425, 17] + [ ecalVeto ] 0 : Hit 1: [-52.039, -215.254, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7358.08; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4708 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, 4.17066, 27] + [ ecalVeto ] 0 : Hit 1: [-152.237, -2.36672e-14, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, 8.34132, 27] + [ ecalVeto ] 0 : Hit 1: [-159.46, 4.17066, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, 4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [-123.341, 8.34132, 22] + [ ecalVeto ] 0 : Hit 2: [-123.341, 8.34132, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 21] + [ ecalVeto ] 0 : Hit 1: [-108.894, -2.36672e-14, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -2.36672e-14, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [24.0793, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [26.4873, -12.512, 16] + [ ecalVeto ] 0 : Hit 2: [24.0793, -8.34132, 15] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 11] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3004.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4709 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -50.0479, 3] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -66.7306, 2] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 0] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -66.7306, 1] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -70.9012, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -75.0719, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -79.2426, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5591.11; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4710 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5675.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4711 Brem photon produced 89 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [89.6303, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [89.6303, 41.7066, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [67.4221, 33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [69.83, 37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [67.4221, 41.7066, 13] + [ ecalVeto ] 0 : Hit 3: [69.83, 37.5359, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5497.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4712 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [69.83, -54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [69.83, -54.2186, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -70.9012, 1] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5697.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4713 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4591.78; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4714 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7567.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4715 Brem photon produced 53 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -58.3892, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -58.3892, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4373.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4716 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 22] + [ ecalVeto ] 0 : Hit 2: [-26.4873, 45.8773, 21] + [ ecalVeto ] 0 : Hit 3: [-24.0793, 41.7066, 20] + [ ecalVeto ] 0 : Hit 4: [-26.4873, 37.5359, 19] + [ ecalVeto ] 0 : Hit 5: [-24.0793, 41.7066, 18] + [ ecalVeto ] 0 : Hit 6: [-26.4873, 37.5359, 17] + [ ecalVeto ] 0 : Hit 7: [-24.0793, 33.3653, 16] + [ ecalVeto ] 0 : Hit 8: [-26.4873, 29.1946, 15] + [ ecalVeto ] 0 : Hit 9: [-24.0793, 33.3653, 14] + [ ecalVeto ] 0 : Hit 10: [-19.2635, 33.3653, 15] + [ ecalVeto ] 0 : Hit 11: [-16.8555, 37.5359, 14] + [ ecalVeto ] 0 : Hit 12: [-19.2635, 33.3653, 13] + [ ecalVeto ] 0 : Hit 13: [-16.8555, 29.1946, 12] + [ ecalVeto ] 0 : Hit 14: [-16.8555, 29.1946, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 71 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4060.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4717 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, -148.523, 16] + [ ecalVeto ] 0 : Hit 1: [30.3676, -144.353, 15] + [ ecalVeto ] 0 : Hit 2: [32.7755, -140.182, 14] + [ ecalVeto ] 0 : Hit 3: [30.3676, -136.011, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [33.711, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [31.3031, 29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5511.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4718 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, 85.9634, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, 81.7928, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3382.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4719 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 15] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [16.8555, 4.17066, 13] + [ ecalVeto ] 0 : Hit 3: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4300.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4720 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 70.9012, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 62.5599, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 58.3892, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-108.894, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [-108.894, -16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [-69.83, 4.17066, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6017.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4721 Brem photon produced 70 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 20.8533, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5411.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4722 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-101.67, -20.8533, 24] + [ ecalVeto ] 0 : Hit 1: [-104.078, -25.024, 23] + [ ecalVeto ] 0 : Hit 2: [-101.67, -29.1946, 22] + [ ecalVeto ] 0 : Hit 3: [-104.078, -25.024, 21] + [ ecalVeto ] 0 : Hit 4: [-96.8541, -29.1946, 23] + [ ecalVeto ] 0 : Hit 5: [-94.4462, -33.3653, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -29.1946, 20] + [ ecalVeto ] 0 : Hit 2: [-89.6303, -33.3653, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -25.024, 16] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 14] + [ ecalVeto ] 0 : Hit 2: [-62.6062, -25.024, 15] + [ ecalVeto ] 0 : Hit 3: [-60.1983, -20.8533, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3577.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4723 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -45.8773, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -79.2426, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -75.0719, 11] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -79.2426, 10] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -79.2426, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5277.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4724 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -87.5839, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -83.4132, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -58.3892, 12] + [ ecalVeto ] 0 : Hit 1: [16.8555, -54.2186, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4939.05; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4725 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -37.5359, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -110.987, 7] + [ ecalVeto ] 0 : Hit 1: [-52.039, -115.158, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [55.3824, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [55.3824, -37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [52.9745, -33.3653, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4828.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4726 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [31.3031, -20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [33.711, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7754.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4727 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -94.3048, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 81.7928, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 75.0719, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 70.9012, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5399.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4728 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3324.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4729 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 70.9012, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 66.7306, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 45.8773, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4727.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4730 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10860; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4731 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-111.302, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-108.894, 8.34132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 70.9012, 4] + [ ecalVeto ] 0 : Hit 1: [12.0397, 70.9012, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4832.72; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4732 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 54.2186, 2] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 50.0479, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6965.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4733 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6400.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4734 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 58.3892, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, 54.2186, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-183.54, -45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [-181.132, -41.7066, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-169.092, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-166.684, -33.3653, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, 54.2186, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 50.0479, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-118.525, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-116.118, -12.512, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 41.7066, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [24.0793, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, 54.2186, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, 50.0479, 9] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -115.158, 1] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -119.329, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7054.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4735 Brem photon produced 48 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [105.013, -131.841, 30] + [ ecalVeto ] 0 : Hit 1: [102.606, -127.67, 29] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -62.5599, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, -58.3892, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2939.05; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4736 Brem photon produced 72 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 25.024, 1] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 29.1946, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 6: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 45.8773, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 42 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4968.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4737 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -70.9012, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -66.7306, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, -45.8773, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3857.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4738 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 83.4132, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, 79.2426, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, 75.0719, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, 70.9012, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, 29.1946, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Hit 8: [12.0397, 20.8533, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 79.2426, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 75.0719, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3135.43; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4739 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 8.34132, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, 4.17066, 22] + [ ecalVeto ] 0 : Hit 2: [-132.973, 8.34132, 21] + [ ecalVeto ] 0 : Hit 3: [-130.565, 12.512, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, 41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [-116.118, 37.5359, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-125.749, 20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, 25.024, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -110.987, 19] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -106.817, 18] + [ ecalVeto ] 0 : Hit 2: [-11.1041, -102.646, 17] + [ ecalVeto ] 0 : Hit 3: [-8.69618, -98.4754, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-102.606, 110.987, 18] + [ ecalVeto ] 0 : Hit 1: [-105.013, 106.817, 17] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-111.302, 29.1946, 17] + [ ecalVeto ] 0 : Hit 1: [-111.302, 29.1946, 15] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 102.646, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 106.817, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-94.4462, 33.3653, 16] + [ ecalVeto ] 0 : Hit 1: [-94.4462, 33.3653, 14] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [45.7507, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [48.1586, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [45.7507, 4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [48.1586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [2.40793, -87.5839, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -83.4132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -79.2426, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -75.0719, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, -70.9012, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, -66.7306, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 1] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4783.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4740 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6589.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4741 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-15.92, -194.401, 28] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -190.23, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-15.92, -152.694, 22] + [ ecalVeto ] 0 : Hit 1: [-18.3279, -148.523, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -115.158, 17] + [ ecalVeto ] 0 : Hit 1: [-15.92, -110.987, 16] + [ ecalVeto ] 0 : Hit 2: [-18.3279, -106.817, 15] + [ ecalVeto ] 0 : Hit 3: [-15.92, -102.646, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -79.2426, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -75.0719, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -70.9012, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -66.7306, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 7] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -41.7066, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -45.8773, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4400.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4742 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5574.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4743 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [68.8945, -60.9395, 14] + [ ecalVeto ] 0 : Hit 1: [67.4221, -58.3892, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 16.6826, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4467.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4744 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5461.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4745 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -65.1101, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -69.2808, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -69.2808, 19] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -65.1101, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -77.6221, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5117.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4746 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 106.817, 3] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 110.987, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 123.499, 1] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 127.67, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6700.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4747 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 133 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5670.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4748 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -62.5599, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -66.7306, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -62.5599, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -58.3892, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-101.67, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-104.078, 16.6826, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -58.3892, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -54.2186, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-52.9745, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [-52.9745, -25.024, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5640.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4749 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 15 + [ ecalVeto ] 0 : Beginning track merging using 15 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 15 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [155.58, -119.329, 32] + [ ecalVeto ] 0 : Hit 1: [153.172, -115.158, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [148.356, -123.499, 28] + [ ecalVeto ] 0 : Hit 1: [145.948, -119.329, 27] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [133.909, -106.817, 28] + [ ecalVeto ] 0 : Hit 1: [131.501, -102.646, 27] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [126.685, -94.3048, 26] + [ ecalVeto ] 0 : Hit 1: [124.277, -90.1341, 25] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -73.4515, 23] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -69.2808, 22] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -60.9395, 21] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -56.7688, 20] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [105.013, -90.1341, 20] + [ ecalVeto ] 0 : Hit 1: [102.606, -85.9634, 19] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -45.8773, 18] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [97.7897, -85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [95.3817, -81.7928, 17] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 16] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [-33.711, 16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [-31.3031, 20.8533, 12] + [ ecalVeto ] 0 : Hit 4: [-33.711, 16.6826, 11] + [ ecalVeto ] 0 : Hit 5: [-31.3031, 20.8533, 10] + [ ecalVeto ] 0 : Hit 6: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Hit 7: [-31.3031, 20.8533, 8] + [ ecalVeto ] 0 : Hit 8: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Hit 9: [-31.3031, 12.512, 6] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 15] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 14] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 12] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 15 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4803.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4750 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 26] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 58.3892, 22] + [ ecalVeto ] 0 : Hit 1: [2.40793, 54.2186, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 37.5359, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3109.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4751 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1968.53; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4752 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 23] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 62.5599, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4224.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4753 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 62.5599, 16] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 58.3892, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 8: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -45.8773, 6] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -41.7066, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 98 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6354.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4754 Brem photon produced 105 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 20.8533, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 41 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4430.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4755 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [81.8697, 41.7066, 23] + [ ecalVeto ] 0 : Hit 1: [81.8697, 41.7066, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4912.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4756 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -75.0719, 19] + [ ecalVeto ] 0 : Hit 1: [-173.908, -70.9012, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, -66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [-159.46, -62.5599, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-108.894, -33.3653, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-55.3824, -4.17066, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5267.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4757 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 15 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2244.53; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4758 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6840.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4759 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1888.94; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4760 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [-130.565, 29.1946, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, 33.3653, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 29.1946, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 33.3653, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 29.1946, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 29.1946, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-69.83, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -8.34132, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4467.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4761 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5337.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4762 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 10] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 29.1946, 9] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2352.56; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4763 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4868.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4764 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 8.34132, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-52.9745, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [-55.3824, 29.1946, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5466.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4765 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, -8.34132, 28] + [ ecalVeto ] 0 : Hit 1: [45.7507, -12.512, 27] + [ ecalVeto ] 0 : Hit 2: [48.1586, -8.34132, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, 25.024, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, 29.1946, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, 25.024, 15] + [ ecalVeto ] 0 : Hit 4: [26.4873, 20.8533, 14] + [ ecalVeto ] 0 : Hit 5: [24.0793, 25.024, 13] + [ ecalVeto ] 0 : Hit 6: [19.2635, 25.024, 14] + [ ecalVeto ] 0 : Hit 7: [19.2635, 25.024, 12] + [ ecalVeto ] 0 : Hit 8: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 9: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Hit 10: [19.2635, 25.024, 8] + [ ecalVeto ] 0 : Hit 11: [16.8555, 20.8533, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [31.3031, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [33.711, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [31.3031, 20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [33.711, 16.6826, 8] + [ ecalVeto ] 0 : Hit 4: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 5: [24.0793, 25.024, 9] + [ ecalVeto ] 0 : Hit 6: [26.4873, 20.8533, 8] + [ ecalVeto ] 0 : Hit 7: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Hit 8: [26.4873, 20.8533, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3809.39; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4766 Brem photon produced 21 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 41.7066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6068.68; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4767 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, 98.4754, 17] + [ ecalVeto ] 0 : Hit 1: [-102.606, 94.3048, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 90.1341, 15] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 85.9634, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 73.4515, 11] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 69.2808, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 62.5599, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, 79.2426, 1] + [ ecalVeto ] 0 : Hit 1: [4.81586, 83.4132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4995.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4768 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, -152.694, 29] + [ ecalVeto ] 0 : Hit 1: [-37.5914, -148.523, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -144.353, 27] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -140.182, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-11.1041, -136.011, 25] + [ ecalVeto ] 0 : Hit 1: [-8.69618, -131.841, 24] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 4.17066, 2] + [ ecalVeto ] 0 : Hit 9: [-4.81586, 8.34132, 1] + [ ecalVeto ] 0 : Hit 10: [-2.40793, 4.17066, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3492.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4769 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [112.237, -110.987, 20] + [ ecalVeto ] 0 : Hit 1: [109.829, -106.817, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 20] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 18] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 17] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 16] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 15] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 14] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 12: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 13: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 14: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 15: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 16: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 17: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Hit 18: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 19: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 20: [4.81586, -41.7066, 2] + [ ecalVeto ] 0 : Hit 21: [2.40793, -37.5359, 1] + [ ecalVeto ] 0 : Hit 22: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4181.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4770 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-147.421, -58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-145.013, -54.2186, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-130.565, -37.5359, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-111.302, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-108.894, -25.024, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 54.2186, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 50.0479, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7617.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4771 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, -41.7066, 29] + [ ecalVeto ] 0 : Hit 1: [-159.46, -45.8773, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-147.421, -41.7066, 27] + [ ecalVeto ] 0 : Hit 1: [-145.013, -45.8773, 26] + [ ecalVeto ] 0 : Finding linreg tracks from 30 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4809.58; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4772 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 18 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1396.04; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4773 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4633.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4774 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, -156.865, 28] + [ ecalVeto ] 0 : Hit 1: [15.92, -152.694, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [8.69618, -140.182, 25] + [ ecalVeto ] 0 : Hit 1: [11.1041, -136.011, 24] + [ ecalVeto ] 0 : Hit 2: [8.69618, -131.841, 23] + [ ecalVeto ] 0 : Hit 3: [11.1041, -127.67, 22] + [ ecalVeto ] 0 : Hit 4: [8.69618, -123.499, 21] + [ ecalVeto ] 0 : Hit 5: [11.1041, -119.329, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [11.1041, -102.646, 18] + [ ecalVeto ] 0 : Hit 1: [8.69618, -98.4754, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -75.0719, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, -70.9012, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, -66.7306, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, -62.5599, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, -58.3892, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, -54.2186, 7] + [ ecalVeto ] 0 : Hit 6: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 7: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 8: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3374.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4775 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 7: [12.0397, -29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [24.0793, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, -20.8533, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Hit 4: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 5: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 6: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Hit 7: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6099.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4776 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4008.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4777 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -45.8773, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -50.0479, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -54.2186, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3895.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4778 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 1] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 2] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -2.66454e-15, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2814; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4779 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [154.644, 79.2426, 16] + [ ecalVeto ] 0 : Hit 1: [152.237, 75.0719, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8643.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4780 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [8.69618, -190.23, 21] + [ ecalVeto ] 0 : Hit 1: [11.1041, -194.401, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-112.237, 94.3048, 19] + [ ecalVeto ] 0 : Hit 1: [-109.829, 90.1341, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-105.013, 81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-102.606, 77.6221, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 81.7928, 14] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 77.6221, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 65.1101, 13] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 60.9395, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6022.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4781 Brem photon produced 86 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4691.09; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4782 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-161.868, 25.024, 25] + [ ecalVeto ] 0 : Hit 1: [-159.46, 20.8533, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, 20.8533, 23] + [ ecalVeto ] 0 : Hit 1: [-137.789, 16.6826, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-101.67, 20.8533, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-77.0538, 16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [-74.6459, 20.8533, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 12.512, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [140.197, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [137.789, 25.024, 9] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3491; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4783 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [16.8555, 4.17066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6326.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4784 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3057.23; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4785 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 3] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 8.34132, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6025.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4786 Brem photon produced 37 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-108.894, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-111.302, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-108.894, -2.36672e-14, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3654.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4787 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 2] + [ ecalVeto ] 0 : Hit 2: [9.63173, 16.6826, 1] + [ ecalVeto ] 0 : Hit 3: [12.0397, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 39 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2892.02; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4788 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-38.5269, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [-40.9348, -29.1946, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, -25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5711.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4789 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, -115.158, 27] + [ ecalVeto ] 0 : Hit 1: [-1.47238, -110.987, 26] + [ ecalVeto ] 0 : Hit 2: [-3.88031, -106.817, 25] + [ ecalVeto ] 0 : Hit 3: [-1.47238, -102.646, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -87.5839, 21] + [ ecalVeto ] 0 : Hit 1: [4.81586, -83.4132, 20] + [ ecalVeto ] 0 : Hit 2: [2.40793, -79.2426, 19] + [ ecalVeto ] 0 : Hit 3: [4.81586, -75.0719, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, -54.2186, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, -50.0479, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, -45.8773, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, -41.7066, 11] + [ ecalVeto ] 0 : Hit 5: [12.0397, -37.5359, 10] + [ ecalVeto ] 0 : Hit 6: [9.63173, -33.3653, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 3] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4358.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4790 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6407.84; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4791 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, 45.8773, 21] + [ ecalVeto ] 0 : Hit 1: [-152.237, 41.7066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-69.83, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -2.66454e-15, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4609.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4792 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4452.71; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4793 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -190.23, 27] + [ ecalVeto ] 0 : Hit 1: [-102.606, -186.059, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [112.237, 136.011, 26] + [ ecalVeto ] 0 : Hit 1: [109.829, 131.841, 25] + [ ecalVeto ] 0 : Hit 2: [112.237, 127.67, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -152.694, 23] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -148.523, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -90.1341, 17] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -85.9634, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5073.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4794 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5036.28; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4795 Brem photon produced 79 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-3.88031, 123.499, 1] + [ ecalVeto ] 0 : Hit 1: [-1.47238, 127.67, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3464.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4796 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [67.4221, -41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [67.4221, -41.7066, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 70.9012, 21] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 75.0719, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 66.7306, 19] + [ ecalVeto ] 0 : Hit 2: [-45.7507, 62.5599, 18] + [ ecalVeto ] 0 : Hit 3: [-48.1586, 58.3892, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 45.8773, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [-31.3031, 20.8533, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3733.53; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4797 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [166.684, 41.7066, 25] + [ ecalVeto ] 0 : Hit 1: [169.092, 45.8773, 24] + [ ecalVeto ] 0 : Hit 2: [166.684, 50.0479, 23] + [ ecalVeto ] 0 : Hit 3: [169.092, 54.2186, 22] + [ ecalVeto ] 0 : Hit 4: [166.684, 50.0479, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [161.868, 50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [159.46, 54.2186, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [39.9993, 85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [37.5914, 81.7928, 17] + [ ecalVeto ] 0 : Hit 2: [39.9993, 77.6221, 16] + [ ecalVeto ] 0 : Hit 3: [38.5269, 75.0719, 15] + [ ecalVeto ] 0 : Hit 4: [40.9348, 70.9012, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -75.0719, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -70.9012, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2862.7; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4798 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 35 + [ ecalVeto ] 0 : Beginning track merging using 35 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 28 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [96.8541, -12.512, 28] + [ ecalVeto ] 0 : Hit 1: [96.8541, -12.512, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [74.6459, -4.17066, 23] + [ ecalVeto ] 0 : Hit 1: [77.0538, -2.66454e-15, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [62.6062, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 1: [60.1983, -4.17066, 19] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [55.3824, 4.17066, 18] + [ ecalVeto ] 0 : Hit 1: [52.9745, -2.66454e-15, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -25.024, 17] + [ ecalVeto ] 0 : Hit 1: [-33.711, -25.024, 15] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [48.1586, -2.66454e-15, 16] + [ ecalVeto ] 0 : Hit 1: [45.7507, 4.17066, 15] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 13] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 7: [4.81586, -8.34132, 10] + [ ecalVeto ] 0 : Hit 8: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [40.9348, 4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [38.5269, -2.66454e-15, 13] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 12] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 12] + [ ecalVeto ] 0 : Track 11: + [ ecalVeto ] 0 : Hit 0: [33.711, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 11] + [ ecalVeto ] 0 : Track 12: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-33.711, -8.34132, 11] + [ ecalVeto ] 0 : Hit 4: [-31.3031, -4.17066, 10] + [ ecalVeto ] 0 : Hit 5: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Hit 6: [-33.711, -2.66454e-15, 7] + [ ecalVeto ] 0 : Track 13: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 10] + [ ecalVeto ] 0 : Track 14: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 4.17066, 5] + [ ecalVeto ] 0 : Track 15: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Track 16: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 17: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Track 18: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Track 19: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 7] + [ ecalVeto ] 0 : Track 20: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 70.9012, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 6] + [ ecalVeto ] 0 : Track 21: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 6] + [ ecalVeto ] 0 : Track 22: + [ ecalVeto ] 0 : Hit 0: [3.34348, 110.987, 7] + [ ecalVeto ] 0 : Hit 1: [3.88031, 106.817, 6] + [ ecalVeto ] 0 : Track 23: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Track 24: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 25: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Track 26: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Track 27: + [ ecalVeto ] 0 : Hit 0: [2.40793, 79.2426, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 75.0719, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 70.9012, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 66.7306, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 91 hits + [ ecalVeto ] 0 : MIP tracking completed; found 28 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7545.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4799 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9309.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4800 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, 115.158, 16] + [ ecalVeto ] 0 : Hit 1: [44.8152, 110.987, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 9: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 10: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Hit 11: [4.81586, 33.3653, 0] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 62.5599, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 58.3892, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 54.2186, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 50.0479, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 5: [12.0397, 37.5359, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, 4.17066, 5] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [48.1586, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [45.7507, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11217.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4801 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [77.0538, -8.34132, 30] + [ ecalVeto ] 0 : Hit 1: [74.6459, -4.17066, 29] + [ ecalVeto ] 0 : Hit 2: [74.6459, -4.17066, 27] + [ ecalVeto ] 0 : Hit 3: [69.83, -4.17066, 28] + [ ecalVeto ] 0 : Hit 4: [69.83, -4.17066, 26] + [ ecalVeto ] 0 : Hit 5: [67.4221, -2.66454e-15, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 1] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3818.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4802 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2878.05; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4803 Brem photon produced 88 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 14] + [ ecalVeto ] 0 : Hit 2: [9.63173, -33.3653, 13] + [ ecalVeto ] 0 : Hit 3: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 4: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -20.8533, 2] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3837.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4804 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [60.1983, 12.512, 23] + [ ecalVeto ] 0 : Hit 1: [62.6062, 16.6826, 22] + [ ecalVeto ] 0 : Hit 2: [60.1983, 20.8533, 21] + [ ecalVeto ] 0 : Hit 3: [62.6062, 25.024, 20] + [ ecalVeto ] 0 : Hit 4: [60.1983, 29.1946, 19] + [ ecalVeto ] 0 : Hit 5: [62.6062, 25.024, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 77.6221, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 73.4515, 19] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 69.2808, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4988.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4805 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 1] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4243.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4806 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -8.34132, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6364.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4807 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 90.1341, 15] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 85.9634, 14] + [ ecalVeto ] 0 : Hit 2: [-61.6707, 81.7928, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 3] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-33.711, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 54.2186, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4462.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4808 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 99 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5115.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4809 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, -66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [55.3824, -62.5599, 12] + [ ecalVeto ] 0 : Hit 2: [52.9745, -66.7306, 11] + [ ecalVeto ] 0 : Hit 3: [55.3824, -62.5599, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [45.7507, -62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [48.1586, -58.3892, 12] + [ ecalVeto ] 0 : Hit 2: [45.7507, -54.2186, 11] + [ ecalVeto ] 0 : Hit 3: [48.1586, -50.0479, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 2] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 1] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 116 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4339.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4810 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 17 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3228.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4811 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [18.3279, -90.1341, 22] + [ ecalVeto ] 0 : Hit 1: [16.8555, -87.5839, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -79.2426, 19] + [ ecalVeto ] 0 : Hit 1: [19.2635, -75.0719, 18] + [ ecalVeto ] 0 : Hit 2: [16.8555, -70.9012, 17] + [ ecalVeto ] 0 : Hit 3: [19.2635, -66.7306, 16] + [ ecalVeto ] 0 : Hit 4: [16.8555, -62.5599, 15] + [ ecalVeto ] 0 : Hit 5: [19.2635, -58.3892, 14] + [ ecalVeto ] 0 : Hit 6: [16.8555, -54.2186, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 8: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3775.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4812 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 62.5599, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 4] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 3] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 50.0479, 5] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4812.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4813 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 70.9012, 22] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 66.7306, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 70.9012, 20] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 75.0719, 19] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 70.9012, 18] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 66.7306, 17] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 62.5599, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -81.7928, 17] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -77.6221, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 54.2186, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 50.0479, 12] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 45.8773, 11] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 41.7066, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -54.2186, 14] + [ ecalVeto ] 0 : Hit 2: [-33.711, -58.3892, 13] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -62.5599, 12] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4492.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4814 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 23 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2960.21; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4815 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -58.3892, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5818.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4816 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -75.0719, 14] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -75.0719, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, -20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, -25.024, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [24.0793, -25.024, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5894.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4817 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [15.92, -136.011, 7] + [ ecalVeto ] 0 : Hit 1: [18.3279, -140.182, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [77.0538, 50.0479, 6] + [ ecalVeto ] 0 : Hit 1: [77.0538, 50.0479, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7565.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4818 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, -12.512, 25] + [ ecalVeto ] 0 : Hit 1: [-181.132, -16.6826, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-169.092, -70.9012, 25] + [ ecalVeto ] 0 : Hit 1: [-166.684, -66.7306, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-154.644, -62.5599, 23] + [ ecalVeto ] 0 : Hit 1: [-152.237, -58.3892, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-161.868, -16.6826, 23] + [ ecalVeto ] 0 : Hit 1: [-159.46, -20.8533, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-140.197, -54.2186, 21] + [ ecalVeto ] 0 : Hit 1: [-137.789, -50.0479, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-118.525, -25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, -20.8533, 18] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-125.749, -45.8773, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, -41.7066, 18] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-111.302, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, -33.3653, 16] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -25.024, 14] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -12.512, 10] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -12.512, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2709.2; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4819 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -165.206, 28] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -161.035, 27] + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4782.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4820 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2503.32; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4821 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 136.011, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 140.182, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 148.523, 19] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 152.694, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 45.8773, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-30.3676, 102.646, 12] + [ ecalVeto ] 0 : Hit 1: [-32.7755, 98.4754, 11] + [ ecalVeto ] 0 : Hit 2: [-30.3676, 94.3048, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [16.8555, 45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 41.7066, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 37.5359, 9] + [ ecalVeto ] 0 : Hit 3: [19.2635, 41.7066, 8] + [ ecalVeto ] 0 : Hit 4: [16.8555, 37.5359, 7] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Hit 2: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 1] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5875.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4822 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 73.4515, 11] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 69.2808, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-66.4865, 65.1101, 10] + [ ecalVeto ] 0 : Hit 1: [-68.8945, 60.9395, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-67.4221, 50.0479, 8] + [ ecalVeto ] 0 : Hit 1: [-69.83, 45.8773, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6505.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4823 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [26.4873, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [24.0793, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [26.4873, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [24.0793, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 5: [26.4873, 4.17066, 4] + [ ecalVeto ] 0 : Hit 6: [24.0793, 8.34132, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [33.711, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [31.3031, 4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [33.711, 8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [31.3031, 12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4795.01; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4824 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [16.8555, 20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [126.685, -136.011, 2] + [ ecalVeto ] 0 : Hit 1: [124.277, -131.841, 1] + [ ecalVeto ] 0 : Hit 2: [126.685, -127.67, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4722.98; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4825 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [133.909, -190.23, 26] + [ ecalVeto ] 0 : Hit 1: [133.909, -190.23, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, -85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [25.5517, -85.9634, 16] + [ ecalVeto ] 0 : Hit 2: [24.0793, -83.4132, 15] + [ ecalVeto ] 0 : Hit 3: [25.5517, -85.9634, 14] + [ ecalVeto ] 0 : Hit 4: [23.1438, -90.1341, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [38.5269, -66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [38.5269, -66.7306, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, -66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -70.9012, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -66.7306, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, -70.9012, 12] + [ ecalVeto ] 0 : Hit 4: [24.0793, -66.7306, 11] + [ ecalVeto ] 0 : Hit 5: [19.2635, -66.7306, 12] + [ ecalVeto ] 0 : Hit 6: [16.8555, -62.5599, 11] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [24.0793, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [24.0793, -58.3892, 13] + [ ecalVeto ] 0 : Hit 2: [26.4873, -62.5599, 12] + [ ecalVeto ] 0 : Hit 3: [24.0793, -58.3892, 11] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [26.4873, -79.2426, 14] + [ ecalVeto ] 0 : Hit 1: [24.0793, -75.0719, 13] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5759.6; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4826 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 29.1946, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 87.5839, 17] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 83.4132, 16] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 79.2426, 15] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 75.0719, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [67.4221, -2.66454e-15, 15] + [ ecalVeto ] 0 : Hit 1: [67.4221, -2.66454e-15, 13] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, -16.6826, 12] + [ ecalVeto ] 0 : Hit 1: [31.3031, -12.512, 11] + [ ecalVeto ] 0 : Hit 2: [33.711, -16.6826, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6249.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4827 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, -62.5599, 19] + [ ecalVeto ] 0 : Hit 1: [-181.132, -66.7306, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-169.092, -70.9012, 17] + [ ecalVeto ] 0 : Hit 1: [-166.684, -75.0719, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -12.512, 10] + [ ecalVeto ] 0 : Hit 1: [-33.711, -16.6826, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -66.7306, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -62.5599, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3966.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4828 Brem photon produced 30 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 8 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-37.5914, -148.523, 18] + [ ecalVeto ] 0 : Hit 1: [-39.9993, -144.353, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -58.3892, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -54.2186, 12] + [ ecalVeto ] 0 : Hit 4: [-19.2635, -50.0479, 11] + [ ecalVeto ] 0 : Hit 5: [-16.8555, -45.8773, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 29.1946, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -37.5359, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 103 hits + [ ecalVeto ] 0 : MIP tracking completed; found 8 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5159.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4829 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-155.58, 144.353, 27] + [ ecalVeto ] 0 : Hit 1: [-153.172, 140.182, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, 102.646, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, 98.4754, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 77.6221, 19] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 73.4515, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [19.2635, 41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 104 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5887.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4830 Brem photon produced 61 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 58.3892, 20] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 54.2186, 19] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 50.0479, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 25.024, 11] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 20.8533, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [39.9993, -94.3048, 12] + [ ecalVeto ] 0 : Hit 1: [37.5914, -90.1341, 11] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Hit 2: [12.0397, -20.8533, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6221.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4831 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4141; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4832 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -41.7066, 6] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4563.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4833 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -119.329, 20] + [ ecalVeto ] 0 : Hit 1: [-32.7755, -115.158, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-30.3676, -102.646, 20] + [ ecalVeto ] 0 : Hit 1: [-30.3676, -102.646, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6648.51; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4834 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-105.013, -156.865, 27] + [ ecalVeto ] 0 : Hit 1: [-102.606, -152.694, 26] + [ ecalVeto ] 0 : Hit 2: [-105.013, -148.523, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -115.158, 21] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -119.329, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -102.646, 17] + [ ecalVeto ] 0 : Hit 1: [-52.039, -98.4754, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [-38.5269, -2.66454e-15, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -58.3892, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -54.2186, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -50.0479, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -45.8773, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5890; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4835 Brem photon produced 38 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [31.3031, -20.8533, 25] + [ ecalVeto ] 0 : Hit 1: [33.711, -16.6826, 24] + [ ecalVeto ] 0 : Hit 2: [31.3031, -12.512, 23] + [ ecalVeto ] 0 : Hit 3: [31.3031, -12.512, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [24.0793, -8.34132, 19] + [ ecalVeto ] 0 : Hit 1: [24.0793, -8.34132, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 18] + [ ecalVeto ] 0 : Hit 3: [19.2635, -8.34132, 16] + [ ecalVeto ] 0 : Hit 4: [16.8555, -4.17066, 15] + [ ecalVeto ] 0 : Hit 5: [19.2635, -2.66454e-15, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 10] + [ ecalVeto ] 0 : Hit 4: [9.63173, 8.34132, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5076.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4836 Brem photon produced 76 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4118.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4837 Brem photon produced 5 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-81.8697, 16.6826, 14] + [ ecalVeto ] 0 : Hit 1: [-82.4065, 12.512, 13] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6770.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4838 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-205.211, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-202.803, 12.512, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 1: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 5: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 8: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [16.8555, 20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [19.2635, 25.024, 10] + [ ecalVeto ] 0 : Hit 2: [16.8555, 20.8533, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 87 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7126.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4839 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 90.1341, 12] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 85.9634, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3661.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4840 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-141.132, 94.3048, 33] + [ ecalVeto ] 0 : Hit 1: [-138.725, 90.1341, 32] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 50.0479, 27] + [ ecalVeto ] 0 : Hit 1: [-130.565, 45.8773, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 215.254, 23] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 211.083, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 37.5359, 23] + [ ecalVeto ] 0 : Hit 1: [-108.894, 33.3653, 22] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 25.024, 19] + [ ecalVeto ] 0 : Hit 1: [-87.2224, 20.8533, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 12.512, 17] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 16.6826, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, 12.512, 15] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 8.34132, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 4.17066, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -4.17066, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [38.5269, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [40.9348, -29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [38.5269, -25.024, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 92 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4558.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4841 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -50.0479, 15] + [ ecalVeto ] 0 : Hit 1: [26.4873, -45.8773, 14] + [ ecalVeto ] 0 : Hit 2: [24.0793, -50.0479, 13] + [ ecalVeto ] 0 : Hit 3: [26.4873, -45.8773, 12] + [ ecalVeto ] 0 : Hit 4: [24.0793, -41.7066, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [19.2635, -25.024, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 3] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -12.512, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -16.6826, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 17 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2456.48; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4842 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4880.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4843 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [4.81586, -25.024, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6187.19; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4844 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 94.3048, 11] + [ ecalVeto ] 0 : Hit 1: [-52.039, 98.4754, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5896.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4845 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, 8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-74.6459, 12.512, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3775.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4846 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 16] + [ ecalVeto ] 0 : Hit 1: [19.2635, 8.34132, 14] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 13] + [ ecalVeto ] 0 : Hit 3: [19.2635, 8.34132, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -73.4515, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-76.1183, -65.1101, 11] + [ ecalVeto ] 0 : Hit 1: [-73.7103, -60.9395, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 10] + [ ecalVeto ] 0 : Hit 1: [31.3031, -45.8773, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, -41.7066, 8] + [ ecalVeto ] 0 : Hit 3: [31.3031, -45.8773, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -50.0479, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [38.5269, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [40.9348, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [38.5269, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [40.9348, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4720; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4847 Brem photon produced 50 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 59 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5991.35; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4848 Brem photon produced 57 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, 66.7306, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, 62.5599, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, 58.3892, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, 62.5599, 13] + [ ecalVeto ] 0 : Hit 4: [19.2635, 58.3892, 12] + [ ecalVeto ] 0 : Hit 5: [16.8555, 54.2186, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 9] + [ ecalVeto ] 0 : Hit 2: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 4: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 5: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 6: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4164.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4849 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, 54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [38.5269, 50.0479, 11] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4156.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4850 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-155.58, -119.329, 27] + [ ecalVeto ] 0 : Hit 1: [-153.172, -123.499, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-126.685, -127.67, 23] + [ ecalVeto ] 0 : Hit 1: [-124.277, -123.499, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-119.461, -115.158, 21] + [ ecalVeto ] 0 : Hit 1: [-117.053, -110.987, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-105.013, -106.817, 19] + [ ecalVeto ] 0 : Hit 1: [-102.606, -102.646, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -90.1341, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -85.9634, 15] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -81.7928, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -77.6221, 13] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -73.4515, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4151.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4851 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 29.1946, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8334.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4852 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-33.711, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-31.3031, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [-26.4873, -12.512, 3] + [ ecalVeto ] 0 : Hit 6: [-24.0793, -8.34132, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -8.34132, 1] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5021.85; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4853 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 41.7066, 24] + [ ecalVeto ] 0 : Hit 1: [31.3031, 45.8773, 23] + [ ecalVeto ] 0 : Hit 2: [33.711, 41.7066, 22] + [ ecalVeto ] 0 : Hit 3: [31.3031, 45.8773, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 41.7066, 19] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 18] + [ ecalVeto ] 0 : Hit 3: [24.0793, 41.7066, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-69.83, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 50.0479, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 37.5359, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 25.024, 2] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 29.1946, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3256.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4854 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [59.2627, 94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [61.6707, 98.4754, 22] + [ ecalVeto ] 0 : Hit 2: [59.2627, 94.3048, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [47.2231, 81.7928, 18] + [ ecalVeto ] 0 : Hit 1: [44.8152, 77.6221, 17] + [ ecalVeto ] 0 : Hit 2: [47.2231, 73.4515, 16] + [ ecalVeto ] 0 : Hit 3: [45.7507, 70.9012, 15] + [ ecalVeto ] 0 : Finding linreg tracks from 36 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 965.179; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4855 Brem photon produced 75 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 79.2426, 20] + [ ecalVeto ] 0 : Hit 1: [24.0793, 75.0719, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 1] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5329.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4856 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 2: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 3: [16.8555, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [19.2635, -16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 7: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 8: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [48.1586, -33.3653, 10] + [ ecalVeto ] 0 : Hit 1: [48.1586, -33.3653, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-33.711, 33.3653, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 107 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 3 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6422.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4857 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -4.17066, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9571.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4858 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [-9.63173, 41.7066, 12] + [ ecalVeto ] 0 : Hit 3: [-12.0397, 45.8773, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 100 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5859.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4859 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-205.211, -33.3653, 31] + [ ecalVeto ] 0 : Hit 1: [-202.803, -29.1946, 30] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4440.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4860 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [89.6303, -33.3653, 14] + [ ecalVeto ] 0 : Hit 1: [89.6303, -33.3653, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-161.868, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-159.46, -12.512, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 37.5359, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-166.684, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [-169.092, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [-166.684, -33.3653, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-159.46, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-161.868, -25.024, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [-40.9348, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3858; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4861 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4861 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-83.3421, -85.9634, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, -81.7928, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-68.8945, -77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-66.4865, -73.4515, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -69.2808, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 60 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6713.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4862 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [48.1586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [48.1586, 16.6826, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 62.5599, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 58.3892, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6001.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4863 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 148.523, 25] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 144.353, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [61.6707, -90.1341, 22] + [ ecalVeto ] 0 : Hit 1: [59.2627, -85.9634, 21] + [ ecalVeto ] 0 : Hit 2: [61.6707, -81.7928, 20] + [ ecalVeto ] 0 : Hit 3: [59.2627, -77.6221, 19] + [ ecalVeto ] 0 : Finding linreg tracks from 106 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3070.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4864 Brem photon produced 17 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5154.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4865 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6129.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4866 Brem photon produced 69 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3471.37; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4867 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 35 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2223.05; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4868 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [119.461, 131.841, 32] + [ ecalVeto ] 0 : Hit 1: [117.053, 127.67, 31] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [102.606, 110.987, 29] + [ ecalVeto ] 0 : Hit 1: [105.013, 106.817, 28] + [ ecalVeto ] 0 : Hit 2: [105.013, 106.817, 26] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [90.5659, 90.1341, 26] + [ ecalVeto ] 0 : Hit 1: [88.1579, 85.9634, 25] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -8.34132, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 51 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3323.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4869 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 83.4132, 25] + [ ecalVeto ] 0 : Hit 1: [26.4873, 79.2426, 24] + [ ecalVeto ] 0 : Hit 2: [24.0793, 75.0719, 23] + [ ecalVeto ] 0 : Hit 3: [26.4873, 70.9012, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [90.5659, -115.158, 24] + [ ecalVeto ] 0 : Hit 1: [88.1579, -110.987, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [31.3031, 70.9012, 21] + [ ecalVeto ] 0 : Hit 1: [33.711, 66.7306, 20] + [ ecalVeto ] 0 : Hit 2: [31.3031, 70.9012, 19] + [ ecalVeto ] 0 : Hit 3: [33.711, 66.7306, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4017.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4870 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 75.0719, 26] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 70.9012, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -45.8773, 6] + [ ecalVeto ] 0 : Hit 2: [-31.3031, -45.8773, 4] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [-26.4873, -45.8773, 5] + [ ecalVeto ] 0 : Hit 5: [-24.0793, -41.7066, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Hit 5: [2.40793, -20.8533, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-69.83, -12.512, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-74.6459, -29.1946, 4] + [ ecalVeto ] 0 : Hit 1: [-77.0538, -33.3653, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -37.5359, 4] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -33.3653, 3] + [ ecalVeto ] 0 : Hit 2: [-16.8555, -29.1946, 2] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [112.237, 94.3048, 4] + [ ecalVeto ] 0 : Hit 1: [109.829, 90.1341, 3] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [66.4865, 81.7928, 3] + [ ecalVeto ] 0 : Hit 1: [66.4865, 81.7928, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5736.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4871 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, 131.841, 12] + [ ecalVeto ] 0 : Hit 1: [44.8152, 127.67, 11] + [ ecalVeto ] 0 : Hit 2: [47.2231, 123.499, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3555.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4872 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, -8.34132, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 8: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -4.17066, 7] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4748.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4873 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3496.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4874 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4089.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4875 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [152.237, -75.0719, 27] + [ ecalVeto ] 0 : Hit 1: [154.644, -70.9012, 26] + [ ecalVeto ] 0 : Hit 2: [152.237, -66.7306, 25] + [ ecalVeto ] 0 : Hit 3: [154.644, -62.5599, 24] + [ ecalVeto ] 0 : Hit 4: [152.237, -58.3892, 23] + [ ecalVeto ] 0 : Hit 5: [154.644, -54.2186, 22] + [ ecalVeto ] 0 : Hit 6: [152.237, -50.0479, 21] + [ ecalVeto ] 0 : Hit 7: [154.644, -45.8773, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -41.7066, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -37.5359, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -33.3653, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 7: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4810.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4876 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -37.5359, 18] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 17] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 7: [4.81586, 8.34132, 6] + [ ecalVeto ] 0 : Hit 8: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 9: [4.81586, 16.6826, 4] + [ ecalVeto ] 0 : Hit 10: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 11: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1649.74; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4877 Brem photon produced 36 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 37.5359, 18] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 17] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 16] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 15] + [ ecalVeto ] 0 : Hit 4: [9.63173, 41.7066, 13] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 14] + [ ecalVeto ] 0 : Hit 6: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 7: [2.40793, 37.5359, 11] + [ ecalVeto ] 0 : Hit 8: [4.81586, 41.7066, 10] + [ ecalVeto ] 0 : Hit 9: [2.40793, 37.5359, 9] + [ ecalVeto ] 0 : Hit 10: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 11: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 12: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 13: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 98.4754, 14] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 94.3048, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 85.9634, 11] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 81.7928, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 45.8773, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 41.7066, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 41.7066, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 62.5599, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 58.3892, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4966.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4878 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-176.316, -8.34132, 25] + [ ecalVeto ] 0 : Hit 1: [-173.908, -12.512, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [54.4469, -110.987, 24] + [ ecalVeto ] 0 : Hit 1: [52.039, -106.817, 23] + [ ecalVeto ] 0 : Hit 2: [54.4469, -102.646, 22] + [ ecalVeto ] 0 : Hit 3: [52.039, -98.4754, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-140.197, -12.512, 21] + [ ecalVeto ] 0 : Hit 1: [-137.789, -16.6826, 20] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [47.2231, -98.4754, 20] + [ ecalVeto ] 0 : Hit 1: [44.8152, -94.3048, 19] + [ ecalVeto ] 0 : Hit 2: [47.2231, -90.1341, 18] + [ ecalVeto ] 0 : Hit 3: [44.8152, -85.9634, 17] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-125.749, -20.8533, 19] + [ ecalVeto ] 0 : Hit 1: [-123.341, -16.6826, 18] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-111.302, -20.8533, 17] + [ ecalVeto ] 0 : Hit 1: [-108.894, -16.6826, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -20.8533, 15] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -25.024, 14] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -29.1946, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -25.024, 12] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-69.83, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -25.024, 10] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 8] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3259.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4879 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -50.0479, 18] + [ ecalVeto ] 0 : Hit 1: [-69.83, -45.8773, 17] + [ ecalVeto ] 0 : Hit 2: [-67.4221, -41.7066, 16] + [ ecalVeto ] 0 : Hit 3: [-67.4221, -41.7066, 14] + [ ecalVeto ] 0 : Hit 4: [-69.83, -37.5359, 13] + [ ecalVeto ] 0 : Hit 5: [-67.4221, -33.3653, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 12] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 11] + [ ecalVeto ] 0 : Hit 2: [26.4873, -29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -29.1946, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10204.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4880 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 4.17066, 6] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -4.17066, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 90 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6340.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4881 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 4.17066, 12] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 2: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 5: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 6: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 7: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 13] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 12] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 4: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 5: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-54.4469, 110.987, 9] + [ ecalVeto ] 0 : Hit 1: [-52.039, 115.158, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6885.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4882 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5700.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4883 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [30.3676, 94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [32.7755, 90.1341, 22] + [ ecalVeto ] 0 : Hit 2: [32.7755, 90.1341, 20] + [ ecalVeto ] 0 : Hit 3: [30.3676, 85.9634, 19] + [ ecalVeto ] 0 : Hit 4: [32.7755, 81.7928, 18] + [ ecalVeto ] 0 : Hit 5: [31.3031, 79.2426, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 79.2426, 16] + [ ecalVeto ] 0 : Hit 1: [24.0793, 75.0719, 15] + [ ecalVeto ] 0 : Hit 2: [26.4873, 79.2426, 14] + [ ecalVeto ] 0 : Hit 3: [24.0793, 75.0719, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 37.5359, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, 54.2186, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, 50.0479, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4386.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4884 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 119.329, 29] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 115.158, 28] + [ ecalVeto ] 0 : Hit 2: [-68.8945, 110.987, 27] + [ ecalVeto ] 0 : Hit 3: [-66.4865, 106.817, 26] + [ ecalVeto ] 0 : Hit 4: [-68.8945, 102.646, 25] + [ ecalVeto ] 0 : Hit 5: [-66.4865, 98.4754, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -41.7066, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4077.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4885 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -115.158, 18] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -110.987, 17] + [ ecalVeto ] 0 : Hit 2: [-25.5517, -110.987, 15] + [ ecalVeto ] 0 : Hit 3: [-23.1438, -106.817, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, -98.4754, 14] + [ ecalVeto ] 0 : Hit 1: [-25.5517, -94.3048, 13] + [ ecalVeto ] 0 : Hit 2: [-23.1438, -90.1341, 12] + [ ecalVeto ] 0 : Hit 3: [-30.3676, -94.3048, 14] + [ ecalVeto ] 0 : Hit 4: [-32.7755, -90.1341, 13] + [ ecalVeto ] 0 : Hit 5: [-30.3676, -85.9634, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3766.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4886 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -33.3653, 20] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -29.1946, 19] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -25.024, 18] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -29.1946, 17] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -25.024, 16] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -25.024, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-25.5517, -194.401, 19] + [ ecalVeto ] 0 : Hit 1: [-23.1438, -190.23, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 5: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 6: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 7: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5155.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4887 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [83.3421, 119.329, 30] + [ ecalVeto ] 0 : Hit 1: [80.9341, 115.158, 29] + [ ecalVeto ] 0 : Hit 2: [83.3421, 110.987, 28] + [ ecalVeto ] 0 : Hit 3: [80.9341, 106.817, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [76.1183, 106.817, 26] + [ ecalVeto ] 0 : Hit 1: [73.7103, 102.646, 25] + [ ecalVeto ] 0 : Hit 2: [76.1183, 98.4754, 24] + [ ecalVeto ] 0 : Hit 3: [73.7103, 94.3048, 23] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [24.0793, 25.024, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, 16.6826, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, 20.8533, 8] + [ ecalVeto ] 0 : Hit 4: [24.0793, 16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [19.2635, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Hit 3: [19.2635, 16.6826, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [26.4873, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [26.4873, 37.5359, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-69.83, 37.5359, 5] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 33.3653, 4] + [ ecalVeto ] 0 : Hit 2: [-62.6062, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [-60.1983, 29.1946, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 105 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6476.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4888 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-25.5517, 119.329, 25] + [ ecalVeto ] 0 : Hit 1: [-23.1438, 115.158, 24] + [ ecalVeto ] 0 : Hit 2: [-25.5517, 110.987, 23] + [ ecalVeto ] 0 : Hit 3: [-23.1438, 106.817, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 90.1341, 20] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 85.9634, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -16.6826, 15] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-37.5914, 106.817, 14] + [ ecalVeto ] 0 : Hit 1: [-39.9993, 102.646, 13] + [ ecalVeto ] 0 : Hit 2: [-37.5914, 98.4754, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 58.3892, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 54.2186, 6] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 50.0479, 5] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 45.8773, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3735.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4889 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [38.5269, -16.6826, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 45.8773, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5419.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4890 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-118.525, 16.6826, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 12.512, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -2.36672e-14, 15] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -4.17066, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 41.7066, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 37.5359, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 37.5359, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 33.3653, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 29.1946, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 25.024, 6] + [ ecalVeto ] 0 : Hit 8: [-12.0397, 29.1946, 5] + [ ecalVeto ] 0 : Hit 9: [-9.63173, 25.024, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 12.512, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-62.6062, -2.66454e-15, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-19.2635, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-16.8555, 20.8533, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4373.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4891 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 7: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Hit 8: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 8.34132, 8] + [ ecalVeto ] 0 : Hit 1: [16.8555, 12.512, 7] + [ ecalVeto ] 0 : Hit 2: [16.8555, 12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5408.55; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4892 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [26.4873, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [24.0793, 33.3653, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [8.69618, 173.547, 1] + [ ecalVeto ] 0 : Hit 1: [11.1041, 169.377, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 115 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5707.94; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4893 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [132.973, 41.7066, 20] + [ ecalVeto ] 0 : Hit 1: [130.565, 37.5359, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 41.7066, 4] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 37.5359, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 50.0479, 4] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 45.8773, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-44.8152, 77.6221, 4] + [ ecalVeto ] 0 : Hit 1: [-44.8152, 77.6221, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6878; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4894 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -70.9012, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -66.7306, 9] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 12.512, 8] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 8.34132, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 12.512, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 3] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 50.0479, 2] + [ ecalVeto ] 0 : Hit 2: [-52.9745, 50.0479, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 121 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7603.61; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4895 Brem photon produced 74 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6749.1; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4896 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-97.7897, -102.646, 29] + [ ecalVeto ] 0 : Hit 1: [-95.3817, -98.4754, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [26.4873, 70.9012, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, 66.7306, 21] + [ ecalVeto ] 0 : Hit 2: [26.4873, 62.5599, 20] + [ ecalVeto ] 0 : Hit 3: [24.0793, 58.3892, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [19.2635, 50.0479, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, 45.8773, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, 41.7066, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, 37.5359, 15] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 32 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2035.56; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4897 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -25.024, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [19.2635, -25.024, 8] + [ ecalVeto ] 0 : Hit 3: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Hit 6: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 7: [4.81586, -33.3653, 0] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [40.9348, 20.8533, 2] + [ ecalVeto ] 0 : Hit 1: [38.5269, 16.6826, 1] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-125.749, 54.2186, 1] + [ ecalVeto ] 0 : Hit 1: [-123.341, 58.3892, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7575.81; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4898 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, -73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-59.2627, -77.6221, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -70.9012, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -58.3892, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4901.5; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4899 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 5: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 6: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4928.4; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4900 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-23.1438, 98.4754, 8] + [ ecalVeto ] 0 : Hit 1: [-25.5517, 94.3048, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 83.4132, 6] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 79.2426, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 83.4132, 6] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 79.2426, 5] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -66.7306, 5] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 4] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 62.5599, 5] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 66.7306, 4] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -45.8773, 4] + [ ecalVeto ] 0 : Hit 1: [-33.711, -41.7066, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 3] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6970.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4901 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 156.865, 25] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 161.035, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2403.21; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4902 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -41.7066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4341.44; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4903 Brem photon produced 44 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 2] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 46 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2830.86; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4904 Brem photon produced 80 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-124.277, 131.841, 4] + [ ecalVeto ] 0 : Hit 1: [-124.277, 131.841, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 44 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 13871.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4905 Brem photon produced 55 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 54.2186, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 1: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5207.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4906 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-197.987, 70.9012, 27] + [ ecalVeto ] 0 : Hit 1: [-195.579, 66.7306, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-118.525, 50.0479, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 54.2186, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -4.17066, 8] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 10] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 4.17066, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [12.0397, 4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4853.47; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4907 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-76.1183, 173.547, 19] + [ ecalVeto ] 0 : Hit 1: [-73.7103, 177.718, 18] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3554.89; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4908 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -37.5359, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3344.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4909 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2729.59; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4910 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -83.4132, 18] + [ ecalVeto ] 0 : Hit 1: [16.8555, -79.2426, 17] + [ ecalVeto ] 0 : Hit 2: [19.2635, -75.0719, 16] + [ ecalVeto ] 0 : Hit 3: [16.8555, -70.9012, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [2.40793, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [4.81586, -50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [2.40793, -45.8773, 9] + [ ecalVeto ] 0 : Hit 3: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 29 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4459.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4911 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-197.987, -54.2186, 27] + [ ecalVeto ] 0 : Hit 1: [-195.579, -50.0479, 26] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-131.501, 85.9634, 24] + [ ecalVeto ] 0 : Hit 1: [-133.909, 81.7928, 23] + [ ecalVeto ] 0 : Hit 2: [-131.501, 77.6221, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-176.316, -25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-173.908, -20.8533, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-125.749, 70.9012, 21] + [ ecalVeto ] 0 : Hit 1: [-123.341, 66.7306, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-161.868, -8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [-159.46, -4.17066, 20] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-118.525, 58.3892, 19] + [ ecalVeto ] 0 : Hit 1: [-116.118, 54.2186, 18] + [ ecalVeto ] 0 : Hit 2: [-118.525, 50.0479, 17] + [ ecalVeto ] 0 : Hit 3: [-116.118, 45.8773, 16] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-125.749, 37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-123.341, 33.3653, 16] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 33.3653, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2506.79; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4912 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [38.5269, -41.7066, 19] + [ ecalVeto ] 0 : Hit 1: [40.9348, -37.5359, 18] + [ ecalVeto ] 0 : Hit 2: [38.5269, -41.7066, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 80 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5862.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4913 Brem photon produced 26 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-47.2231, 73.4515, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 70.9012, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -58.3892, 15] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -54.2186, 14] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -50.0479, 13] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -45.8773, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 62.5599, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 58.3892, 14] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 54.2186, 13] + [ ecalVeto ] 0 : Hit 3: [-38.5269, 50.0479, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, -70.9012, 14] + [ ecalVeto ] 0 : Hit 1: [-48.1586, -66.7306, 13] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 8] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 20.8533, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 81 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 11861; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4914 Brem photon produced 23 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 11 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-155.58, 161.035, 23] + [ ecalVeto ] 0 : Hit 1: [-153.172, 165.206, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-148.356, 156.865, 21] + [ ecalVeto ] 0 : Hit 1: [-145.948, 152.694, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-141.132, 152.694, 19] + [ ecalVeto ] 0 : Hit 1: [-138.725, 148.523, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-111.302, 4.17066, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, 8.34132, 18] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-126.685, 144.353, 17] + [ ecalVeto ] 0 : Hit 1: [-124.277, 140.182, 16] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-112.237, 136.011, 15] + [ ecalVeto ] 0 : Hit 1: [-109.829, 131.841, 14] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 119.329, 13] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 115.158, 12] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-62.6062, 41.7066, 11] + [ ecalVeto ] 0 : Hit 1: [-60.1983, 37.5359, 10] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [31.3031, 62.5599, 11] + [ ecalVeto ] 0 : Hit 1: [31.3031, 62.5599, 9] + [ ecalVeto ] 0 : Hit 2: [33.711, 66.7306, 8] + [ ecalVeto ] 0 : Hit 3: [31.3031, 62.5599, 7] + [ ecalVeto ] 0 : Hit 4: [33.711, 66.7306, 6] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 6] + [ ecalVeto ] 0 : Track 10: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 73.4515, 7] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 69.2808, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 95 hits + [ ecalVeto ] 0 : MIP tracking completed; found 11 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8774.21; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4915 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [26.4873, -29.1946, 10] + [ ecalVeto ] 0 : Hit 2: [24.0793, -33.3653, 9] + [ ecalVeto ] 0 : Hit 3: [26.4873, -29.1946, 8] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, -16.6826, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, -16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 5: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -12.512, 9] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, -12.512, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [12.0397, -4.17066, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 58 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 10652.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4916 Brem photon produced 45 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, -41.7066, 16] + [ ecalVeto ] 0 : Hit 1: [31.3031, -45.8773, 15] + [ ecalVeto ] 0 : Hit 2: [33.711, -41.7066, 14] + [ ecalVeto ] 0 : Hit 3: [31.3031, -37.5359, 13] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 75.0719, 11] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 75.0719, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [24.0793, -75.0719, 5] + [ ecalVeto ] 0 : Hit 1: [26.4873, -79.2426, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 1] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 119 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 8558.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4917 Brem photon produced 60 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [101.67, 37.5359, 27] + [ ecalVeto ] 0 : Hit 1: [104.078, 41.7066, 26] + [ ecalVeto ] 0 : Hit 2: [101.67, 37.5359, 25] + [ ecalVeto ] 0 : Hit 3: [104.078, 33.3653, 24] + [ ecalVeto ] 0 : Hit 4: [101.67, 37.5359, 23] + [ ecalVeto ] 0 : Hit 5: [101.67, 37.5359, 21] + [ ecalVeto ] 0 : Hit 6: [96.8541, 37.5359, 22] + [ ecalVeto ] 0 : Hit 7: [96.8541, 37.5359, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 8.34132, 13] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 12.512, 12] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 16.6826, 11] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 20.8533, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 12] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 11] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 10] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 9] + [ ecalVeto ] 0 : Hit 4: [4.81586, 8.34132, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 5] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4810.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4918 Brem photon produced 34 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [9.63173, -8.34132, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -12.512, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6702.64; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4919 Brem photon produced 39 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-169.092, 79.2426, 23] + [ ecalVeto ] 0 : Hit 1: [-166.684, 75.0719, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-132.973, 66.7306, 19] + [ ecalVeto ] 0 : Hit 1: [-130.565, 62.5599, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-118.525, 58.3892, 17] + [ ecalVeto ] 0 : Hit 1: [-116.118, 54.2186, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-82.4065, 45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-81.8697, 41.7066, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 29.1946, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 43 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4220.87; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4920 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-66.4865, 90.1341, 22] + [ ecalVeto ] 0 : Hit 1: [-68.8945, 85.9634, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 77.6221, 20] + [ ecalVeto ] 0 : Hit 1: [-61.6707, 73.4515, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 33.3653, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 29.1946, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 33.3653, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 29.1946, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 8: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 16.6826, 3] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 12.512, 2] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 16.6826, 1] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 20.8533, 0] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4972.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4921 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 17 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3203.97; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4922 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 11 + [ ecalVeto ] 0 : Beginning track merging using 11 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-109.829, -65.1101, 18] + [ ecalVeto ] 0 : Hit 1: [-111.302, -62.5599, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [154.644, -54.2186, 18] + [ ecalVeto ] 0 : Hit 1: [152.237, -50.0479, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [147.421, -58.3892, 18] + [ ecalVeto ] 0 : Hit 1: [145.013, -54.2186, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-96.8541, -37.5359, 17] + [ ecalVeto ] 0 : Hit 1: [-94.4462, -41.7066, 16] + [ ecalVeto ] 0 : Hit 2: [-89.6303, -41.7066, 17] + [ ecalVeto ] 0 : Hit 3: [-87.2224, -37.5359, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-81.8697, -25.024, 16] + [ ecalVeto ] 0 : Hit 1: [-82.4065, -20.8533, 15] + [ ecalVeto ] 0 : Hit 2: [-81.8697, -16.6826, 14] + [ ecalVeto ] 0 : Hit 3: [-89.6303, -16.6826, 15] + [ ecalVeto ] 0 : Hit 4: [-87.2224, -20.8533, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -2.66454e-15, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -25.024, 3] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -20.8533, 2] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 1] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -25.024, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6445.75; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4923 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 94 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5138.63; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4924 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -4.17066, 12] + [ ecalVeto ] 0 : Hit 1: [-33.711, -2.66454e-15, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-24.0793, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 4.17066, 9] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-31.3031, 20.8533, 8] + [ ecalVeto ] 0 : Hit 1: [-33.711, 16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6173.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4925 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 20] + [ ecalVeto ] 0 : Hit 1: [16.8555, 4.17066, 19] + [ ecalVeto ] 0 : Hit 2: [19.2635, 8.34132, 18] + [ ecalVeto ] 0 : Hit 3: [16.8555, 12.512, 17] + [ ecalVeto ] 0 : Hit 4: [16.8555, 12.512, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 12.512, 14] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 13] + [ ecalVeto ] 0 : Hit 2: [12.0397, 20.8533, 12] + [ ecalVeto ] 0 : Hit 3: [9.63173, 16.6826, 11] + [ ecalVeto ] 0 : Hit 4: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 5: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 6: [4.81586, 25.024, 10] + [ ecalVeto ] 0 : Hit 7: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 8: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 9: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 10: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3731.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4926 Brem photon produced 28 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [162.804, 131.841, 28] + [ ecalVeto ] 0 : Hit 1: [160.396, 127.67, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 73.4515, 15] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 69.2808, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 41.7066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Hit 4: [4.81586, -16.6826, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [33.711, -58.3892, 6] + [ ecalVeto ] 0 : Hit 1: [33.711, -58.3892, 4] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 129 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5583.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4927 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 16.6826, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 53 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3252.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4928 Brem photon produced 20 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [24.0793, 33.3653, 5] + [ ecalVeto ] 0 : Hit 1: [24.0793, 33.3653, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [60.1983, -20.8533, 3] + [ ecalVeto ] 0 : Hit 1: [62.6062, -16.6826, 2] + [ ecalVeto ] 0 : Hit 2: [60.1983, -20.8533, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5542.49; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4929 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [25.5517, -136.011, 22] + [ ecalVeto ] 0 : Hit 1: [23.1438, -131.841, 21] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [18.3279, -106.817, 18] + [ ecalVeto ] 0 : Hit 1: [15.92, -102.646, 17] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 65 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2791.52; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4930 Brem photon produced 71 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5387.69; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4931 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 1: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 84 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4857.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4932 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, 16.6826, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 16.6826, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 20.8533, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 3] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, 58.3892, 4] + [ ecalVeto ] 0 : Hit 1: [16.8555, 54.2186, 3] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-123.341, -8.34132, 2] + [ ecalVeto ] 0 : Hit 1: [-125.749, -4.17066, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3523.32; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4933 Brem photon produced 42 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-59.2627, 136.011, 28] + [ ecalVeto ] 0 : Hit 1: [-61.6707, 131.841, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-32.7755, 98.4754, 21] + [ ecalVeto ] 0 : Hit 1: [-30.3676, 94.3048, 20] + [ ecalVeto ] 0 : Hit 2: [-32.7755, 90.1341, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -8.34132, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-19.2635, 50.0479, 13] + [ ecalVeto ] 0 : Hit 1: [-16.8555, 45.8773, 12] + [ ecalVeto ] 0 : Hit 2: [-19.2635, 41.7066, 11] + [ ecalVeto ] 0 : Hit 3: [-16.8555, 37.5359, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 25.024, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 20.8533, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 4.17066, 4] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 75 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4255.65; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4934 Brem photon produced 56 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 8.34132, 5] + [ ecalVeto ] 0 : Hit 1: [12.0397, 4.17066, 4] + [ ecalVeto ] 0 : Hit 2: [9.63173, 8.34132, 3] + [ ecalVeto ] 0 : Hit 3: [12.0397, 4.17066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3943.62; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4935 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -4.17066, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -2.66454e-15, 19] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [145.013, 45.8773, 3] + [ ecalVeto ] 0 : Hit 1: [147.421, 41.7066, 2] + [ ecalVeto ] 0 : Hit 2: [145.013, 45.8773, 1] + [ ecalVeto ] 0 : Hit 3: [147.421, 50.0479, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4769.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4936 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, -20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5707.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4937 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [55.3824, -54.2186, 26] + [ ecalVeto ] 0 : Hit 1: [52.9745, -50.0479, 25] + [ ecalVeto ] 0 : Hit 2: [55.3824, -54.2186, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-18.3279, -190.23, 23] + [ ecalVeto ] 0 : Hit 1: [-15.92, -186.059, 22] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [26.4873, -29.1946, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, -25.024, 17] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 41.7066, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 66 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4089.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4938 Brem photon produced 18 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3981.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4939 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, 70.9012, 25] + [ ecalVeto ] 0 : Hit 1: [-181.132, 66.7306, 24] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -37.5359, 3] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -41.7066, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 2] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 1] + [ ecalVeto ] 0 : Hit 3: [4.81586, -25.024, 0] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 1] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4162.57; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4940 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3739.92; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4941 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-67.4221, -41.7066, 18] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -41.7066, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 31 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7004.91; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4942 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 22] + [ ecalVeto ] 0 : Hit 1: [24.0793, 16.6826, 21] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 20] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 19] + [ ecalVeto ] 0 : Hit 4: [26.4873, 12.512, 18] + [ ecalVeto ] 0 : Hit 5: [24.0793, 8.34132, 17] + [ ecalVeto ] 0 : Hit 6: [26.4873, 4.17066, 16] + [ ecalVeto ] 0 : Hit 7: [24.0793, -2.66454e-15, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-40.9348, 29.1946, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 33.3653, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-33.711, 41.7066, 15] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 45.8773, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [19.2635, -2.66454e-15, 14] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 13] + [ ecalVeto ] 0 : Hit 2: [19.2635, -8.34132, 12] + [ ecalVeto ] 0 : Hit 3: [16.8555, -4.17066, 11] + [ ecalVeto ] 0 : Hit 4: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 5: [16.8555, -12.512, 9] + [ ecalVeto ] 0 : Hit 6: [16.8555, -12.512, 7] + [ ecalVeto ] 0 : Hit 7: [12.0397, -12.512, 8] + [ ecalVeto ] 0 : Hit 8: [12.0397, -12.512, 6] + [ ecalVeto ] 0 : Hit 9: [9.63173, -16.6826, 5] + [ ecalVeto ] 0 : Hit 10: [12.0397, -20.8533, 4] + [ ecalVeto ] 0 : Hit 11: [9.63173, -16.6826, 3] + [ ecalVeto ] 0 : Hit 12: [12.0397, -12.512, 2] + [ ecalVeto ] 0 : Hit 13: [9.63173, -16.6826, 1] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-24.0793, 41.7066, 14] + [ ecalVeto ] 0 : Hit 1: [-26.4873, 45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [-24.0793, 41.7066, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3239.56; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4943 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-183.54, -79.2426, 29] + [ ecalVeto ] 0 : Hit 1: [-181.132, -75.0719, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, -54.2186, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, -50.0479, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-82.4065, -45.8773, 15] + [ ecalVeto ] 0 : Hit 1: [-81.8697, -41.7066, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 13] + [ ecalVeto ] 0 : Hit 1: [-67.4221, -33.3653, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -29.1946, 11] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [16.8555, -37.5359, 9] + [ ecalVeto ] 0 : Hit 1: [19.2635, -33.3653, 8] + [ ecalVeto ] 0 : Hit 2: [16.8555, -29.1946, 7] + [ ecalVeto ] 0 : Hit 3: [19.2635, -25.024, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -25.024, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4621.41; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4944 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 9] + [ ecalVeto ] 0 : Hit 1: [12.0397, 37.5359, 8] + [ ecalVeto ] 0 : Hit 2: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 3: [12.0397, 37.5359, 6] + [ ecalVeto ] 0 : Hit 4: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 5: [12.0397, 45.8773, 4] + [ ecalVeto ] 0 : Hit 6: [9.63173, 41.7066, 3] + [ ecalVeto ] 0 : Hit 7: [9.63173, 41.7066, 1] + [ ecalVeto ] 0 : Hit 8: [12.0397, 37.5359, 0] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 6] + [ ecalVeto ] 0 : Hit 2: [9.63173, 33.3653, 5] + [ ecalVeto ] 0 : Hit 3: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [9.63173, 33.3653, 1] + [ ecalVeto ] 0 : Finding linreg tracks from 62 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6601.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4945 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [47.2231, -90.1341, 18] + [ ecalVeto ] 0 : Hit 1: [44.8152, -85.9634, 17] + [ ecalVeto ] 0 : Hit 2: [47.2231, -81.7928, 16] + [ ecalVeto ] 0 : Hit 3: [44.8152, -77.6221, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -25.024, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -20.8533, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -20.8533, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -20.8533, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -20.8533, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -16.6826, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -20.8533, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [31.3031, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [33.711, -58.3892, 10] + [ ecalVeto ] 0 : Hit 2: [31.3031, -54.2186, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 68 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5634.95; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4946 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 4.17066, 2] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 1] + [ ecalVeto ] 0 : Hit 2: [26.4873, 4.17066, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 54 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1196.64; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4947 Brem photon produced 11 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -16.6826, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5339.99; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4948 Brem photon produced 59 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -12.512, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -12.512, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -8.34132, 10] + [ ecalVeto ] 0 : Hit 4: [-12.0397, -12.512, 9] + [ ecalVeto ] 0 : Hit 5: [-9.63173, -8.34132, 8] + [ ecalVeto ] 0 : Hit 6: [-12.0397, -12.512, 7] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -16.6826, 6] + [ ecalVeto ] 0 : Hit 8: [-12.0397, -12.512, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 93 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5986.13; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4949 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3340.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4950 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 16.6826, 4] + [ ecalVeto ] 0 : Hit 1: [31.3031, 12.512, 3] + [ ecalVeto ] 0 : Hit 2: [33.711, 16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 9093; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4951 Brem photon produced 19 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [119.461, 148.523, 24] + [ ecalVeto ] 0 : Hit 1: [117.053, 144.353, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [97.7897, 127.67, 20] + [ ecalVeto ] 0 : Hit 1: [95.3817, 123.499, 19] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 50.0479, 14] + [ ecalVeto ] 0 : Hit 1: [2.40793, 45.8773, 13] + [ ecalVeto ] 0 : Hit 2: [4.81586, 41.7066, 12] + [ ecalVeto ] 0 : Hit 3: [2.40793, 45.8773, 11] + [ ecalVeto ] 0 : Hit 4: [-4.81586, 50.0479, 13] + [ ecalVeto ] 0 : Hit 5: [-2.40793, 45.8773, 12] + [ ecalVeto ] 0 : Hit 6: [-4.81586, 41.7066, 11] + [ ecalVeto ] 0 : Hit 7: [-2.40793, 37.5359, 10] + [ ecalVeto ] 0 : Hit 8: [-4.81586, 41.7066, 9] + [ ecalVeto ] 0 : Hit 9: [-2.40793, 37.5359, 8] + [ ecalVeto ] 0 : Hit 10: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 11: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 37.5359, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 33.3653, 11] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 9] + [ ecalVeto ] 0 : Finding linreg tracks from 102 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5814.29; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4952 Brem photon produced 7 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, -25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2596.19; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4953 Brem photon produced 35 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 90.1341, 13] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 94.3048, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-97.7897, 85.9634, 13] + [ ecalVeto ] 0 : Hit 1: [-95.3817, 90.1341, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-90.5659, 98.4754, 11] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 102.646, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 47 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3635.54; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4954 Brem photon produced 27 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-190.763, -16.6826, 29] + [ ecalVeto ] 0 : Hit 1: [-188.356, -12.512, 28] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-154.644, -12.512, 25] + [ ecalVeto ] 0 : Hit 1: [-152.237, -8.34132, 24] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -12.512, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 82 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5616.3; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4955 Brem photon produced 31 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-44.8152, -85.9634, 18] + [ ecalVeto ] 0 : Hit 1: [-47.2231, -81.7928, 17] + [ ecalVeto ] 0 : Hit 2: [-44.8152, -77.6221, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [19.2635, -50.0479, 16] + [ ecalVeto ] 0 : Hit 1: [16.8555, -45.8773, 15] + [ ecalVeto ] 0 : Hit 2: [19.2635, -41.7066, 14] + [ ecalVeto ] 0 : Hit 3: [16.8555, -37.5359, 13] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -25.024, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, -20.8533, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -16.6826, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -2.66454e-15, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4151.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4956 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -66.7306, 10] + [ ecalVeto ] 0 : Hit 1: [2.40793, -62.5599, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -58.3892, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -54.2186, 7] + [ ecalVeto ] 0 : Hit 4: [4.81586, -50.0479, 6] + [ ecalVeto ] 0 : Hit 5: [2.40793, -45.8773, 5] + [ ecalVeto ] 0 : Hit 6: [4.81586, -41.7066, 4] + [ ecalVeto ] 0 : Hit 7: [9.63173, -41.7066, 5] + [ ecalVeto ] 0 : Hit 8: [12.0397, -45.8773, 4] + [ ecalVeto ] 0 : Hit 9: [9.63173, -41.7066, 3] + [ ecalVeto ] 0 : Hit 10: [12.0397, -45.8773, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5846.14; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4957 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 37.5359, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Hit 5: [4.81586, 41.7066, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4259.18; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4958 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -70.9012, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 110 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4388.33; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4959 Brem photon produced 58 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-3.88031, 98.4754, 11] + [ ecalVeto ] 0 : Hit 1: [-1.47238, 102.646, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5280.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4960 Brem photon produced 64 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 29.1946, 5] + [ ecalVeto ] 0 : Hit 1: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 49 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3840.93; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4961 Brem photon produced 6 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -186.059, 28] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -181.889, 27] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-66.4865, -173.547, 26] + [ ecalVeto ] 0 : Hit 1: [-68.8945, -169.377, 25] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-112.237, -144.353, 23] + [ ecalVeto ] 0 : Hit 1: [-109.829, -140.182, 22] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-105.013, -131.841, 21] + [ ecalVeto ] 0 : Hit 1: [-102.606, -127.67, 20] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -110.987, 18] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -106.817, 17] + [ ecalVeto ] 0 : Finding linreg tracks from 34 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3046.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4962 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [23.1438, -181.889, 21] + [ ecalVeto ] 0 : Hit 1: [25.5517, -186.059, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [25.5517, -102.646, 16] + [ ecalVeto ] 0 : Hit 1: [23.1438, -98.4754, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [23.1438, -131.841, 13] + [ ecalVeto ] 0 : Hit 1: [25.5517, -136.011, 12] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 1849.78; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4963 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 37 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4308.67; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4964 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [-19.2635, -50.0479, 11] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-33.711, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -20.8533, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -2.66454e-15, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 25.024, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5403.36; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4965 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-59.2627, -119.329, 22] + [ ecalVeto ] 0 : Hit 1: [-61.6707, -115.158, 21] + [ ecalVeto ] 0 : Hit 2: [-59.2627, -110.987, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [54.4469, 177.718, 22] + [ ecalVeto ] 0 : Hit 1: [52.039, 173.547, 21] + [ ecalVeto ] 0 : Hit 2: [54.4469, 169.377, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-47.2231, -81.7928, 15] + [ ecalVeto ] 0 : Hit 1: [-44.8152, -85.9634, 14] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 13] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 12] + [ ecalVeto ] 0 : Hit 2: [-26.4873, -62.5599, 11] + [ ecalVeto ] 0 : Hit 3: [-24.0793, -58.3892, 10] + [ ecalVeto ] 0 : Hit 4: [-26.4873, -54.2186, 9] + [ ecalVeto ] 0 : Hit 5: [-24.0793, -50.0479, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 10] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -12.512, 6] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -8.34132, 2] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 101 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5733.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4966 Brem photon produced 47 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -20.8533, 11] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -25.024, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 86 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5320.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4967 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 4.17066, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4153.31; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4968 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [9.63173, 33.3653, 21] + [ ecalVeto ] 0 : Hit 1: [12.0397, 29.1946, 20] + [ ecalVeto ] 0 : Hit 2: [12.0397, 29.1946, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 16] + [ ecalVeto ] 0 : Hit 1: [9.63173, 16.6826, 15] + [ ecalVeto ] 0 : Hit 2: [12.0397, 12.512, 14] + [ ecalVeto ] 0 : Hit 3: [9.63173, 8.34132, 13] + [ ecalVeto ] 0 : Hit 4: [12.0397, 4.17066, 12] + [ ecalVeto ] 0 : Hit 5: [9.63173, 8.34132, 11] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 10] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -12.512, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, -16.6826, 4] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -2.66454e-15, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -12.512, 4] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -16.6826, 3] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -20.8533, 5] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Hit 7: [-12.0397, -20.8533, 3] + [ ecalVeto ] 0 : Hit 8: [-9.63173, -16.6826, 2] + [ ecalVeto ] 0 : Finding linreg tracks from 96 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 2 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5024.9; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4969 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-68.8945, 77.6221, 23] + [ ecalVeto ] 0 : Hit 1: [-66.4865, 81.7928, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-61.6707, 81.7928, 21] + [ ecalVeto ] 0 : Hit 1: [-59.2627, 85.9634, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 77.6221, 17] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 75.0719, 16] + [ ecalVeto ] 0 : Finding linreg tracks from 26 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3226.77; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4970 Brem photon produced 75 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-31.3031, -62.5599, 10] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5657.59; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4971 Brem photon produced 32 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6183.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4972 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [32.7755, -206.913, 24] + [ ecalVeto ] 0 : Hit 1: [30.3676, -202.742, 23] + [ ecalVeto ] 0 : Hit 2: [32.7755, -198.571, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 75.0719, 13] + [ ecalVeto ] 0 : Hit 1: [12.0397, 79.2426, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 4.17066, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 8.34132, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 48 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4160.15; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4973 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 10 + [ ecalVeto ] 0 : Beginning track merging using 10 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -45.8773, 23] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 110.987, 19] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 106.817, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-83.3421, 94.3048, 17] + [ ecalVeto ] 0 : Hit 1: [-80.9341, 90.1341, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-161.868, 25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-159.46, 20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [-154.644, 20.8533, 15] + [ ecalVeto ] 0 : Hit 3: [-152.237, 25.024, 14] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -25.024, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -20.8533, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -16.6826, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -12.512, 12] + [ ecalVeto ] 0 : Hit 4: [-16.8555, -12.512, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-80.9341, 65.1101, 14] + [ ecalVeto ] 0 : Hit 1: [-83.3421, 60.9395, 13] + [ ecalVeto ] 0 : Hit 2: [-80.9341, 56.7688, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-69.83, 54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-67.4221, 50.0479, 10] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -4.17066, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 5] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 8] + [ ecalVeto ] 0 : Finding linreg tracks from 88 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 0 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 0 for 0 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6652.17; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4974 Brem photon produced 24 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -45.8773, 13] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -41.7066, 12] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 10] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5944.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4975 Brem photon produced 10 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 87.5839, 18] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 83.4132, 17] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 79.2426, 18] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 75.0719, 17] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 70.9012, 16] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 66.7306, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, 75.0719, 16] + [ ecalVeto ] 0 : Hit 1: [-12.0397, 70.9012, 15] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -25.024, 9] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -20.8533, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 4.17066, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 97 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6047.12; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4976 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 94.3048, 23] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 90.1341, 22] + [ ecalVeto ] 0 : Hit 2: [-39.9993, 85.9634, 21] + [ ecalVeto ] 0 : Hit 3: [-37.5914, 81.7928, 20] + [ ecalVeto ] 0 : Hit 4: [-37.5914, 81.7928, 18] + [ ecalVeto ] 0 : Hit 5: [-32.7755, 81.7928, 19] + [ ecalVeto ] 0 : Hit 6: [-32.7755, 81.7928, 17] + [ ecalVeto ] 0 : Hit 7: [-31.3031, 79.2426, 16] + [ ecalVeto ] 0 : Hit 8: [-33.711, 75.0719, 15] + [ ecalVeto ] 0 : Hit 9: [-31.3031, 70.9012, 14] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-73.7103, -119.329, 22] + [ ecalVeto ] 0 : Hit 1: [-76.1183, -115.158, 21] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-54.4469, -77.6221, 19] + [ ecalVeto ] 0 : Hit 1: [-52.039, -73.4515, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -66.7306, 17] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 15] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-33.711, -41.7066, 13] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -37.5359, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [33.711, -2.66454e-15, 4] + [ ecalVeto ] 0 : Hit 1: [31.3031, 4.17066, 3] + [ ecalVeto ] 0 : Hit 2: [33.711, 8.34132, 2] + [ ecalVeto ] 0 : Hit 3: [31.3031, 12.512, 1] + [ ecalVeto ] 0 : Hit 4: [33.711, 8.34132, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 72 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6237.79; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4977 Brem photon produced 80 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 2 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [52.9745, 8.34132, 21] + [ ecalVeto ] 0 : Hit 1: [52.9745, 8.34132, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [9.63173, -33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [12.0397, -29.1946, 4] + [ ecalVeto ] 0 : Hit 3: [9.63173, -33.3653, 3] + [ ecalVeto ] 0 : Hit 4: [12.0397, -37.5359, 2] + [ ecalVeto ] 0 : Hit 5: [9.63173, -33.3653, 1] + [ ecalVeto ] 0 : Hit 6: [12.0397, -37.5359, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 2 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6119.02; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4978 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 4.17066, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 8.34132, 10] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 4.17066, 9] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 8.34132, 8] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 12.512, 7] + [ ecalVeto ] 0 : Hit 5: [-9.63173, 16.6826, 6] + [ ecalVeto ] 0 : Hit 6: [-12.0397, 20.8533, 5] + [ ecalVeto ] 0 : Hit 7: [-9.63173, 16.6826, 4] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 29.1946, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 29.1946, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 33.3653, 3] + [ ecalVeto ] 0 : Hit 6: [-2.40793, 29.1946, 2] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, 25.024, 7] + [ ecalVeto ] 0 : Hit 1: [-2.40793, 20.8533, 6] + [ ecalVeto ] 0 : Hit 2: [-4.81586, 25.024, 5] + [ ecalVeto ] 0 : Hit 3: [-4.81586, 25.024, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 61 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5986.06; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4979 Brem photon produced 9 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-132.973, 25.024, 23] + [ ecalVeto ] 0 : Hit 1: [-130.565, 20.8533, 22] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-111.302, 12.512, 19] + [ ecalVeto ] 0 : Hit 1: [-108.894, 8.34132, 18] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-126.685, -169.377, 19] + [ ecalVeto ] 0 : Hit 1: [-124.277, -165.206, 18] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-105.013, -148.523, 17] + [ ecalVeto ] 0 : Hit 1: [-102.606, -144.353, 16] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-89.6303, -8.34132, 15] + [ ecalVeto ] 0 : Hit 1: [-87.2224, -4.17066, 14] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -8.34132, 13] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -12.512, 12] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-33.711, -66.7306, 9] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -62.5599, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -20.8533, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -16.6826, 8] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [31.3031, -29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [33.711, -33.3653, 6] + [ ecalVeto ] 0 : Hit 2: [31.3031, -37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [33.711, -33.3653, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 89 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7638.88; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4980 Brem photon produced 71 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 7 + [ ecalVeto ] 0 : Beginning track merging using 7 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -62.5599, 17] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -66.7306, 16] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-19.2635, -66.7306, 15] + [ ecalVeto ] 0 : Hit 1: [-16.8555, -62.5599, 14] + [ ecalVeto ] 0 : Hit 2: [-19.2635, -58.3892, 13] + [ ecalVeto ] 0 : Hit 3: [-16.8555, -54.2186, 12] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -54.2186, 11] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 10] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -54.2186, 7] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -50.0479, 9] + [ ecalVeto ] 0 : Hit 5: [-4.81586, -50.0479, 7] + [ ecalVeto ] 0 : Hit 6: [-2.40793, -45.8773, 6] + [ ecalVeto ] 0 : Hit 7: [-4.81586, -41.7066, 5] + [ ecalVeto ] 0 : Hit 8: [-2.40793, -37.5359, 4] + [ ecalVeto ] 0 : Hit 9: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 10: [-2.40793, -37.5359, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [2.40793, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 9] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 8] + [ ecalVeto ] 0 : Hit 3: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 4: [2.40793, -37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [2.40793, -37.5359, 3] + [ ecalVeto ] 0 : Hit 6: [4.81586, -33.3653, 2] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-125.749, -37.5359, 11] + [ ecalVeto ] 0 : Hit 1: [-123.341, -41.7066, 10] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 2: [-2.40793, -37.5359, 6] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 78 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7156.7; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4981 Brem photon produced 41 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-38.5269, 8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [-38.5269, 8.34132, 8] + [ ecalVeto ] 0 : Hit 2: [-40.9348, 4.17066, 7] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [4.81586, -2.66454e-15, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, -4.17066, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, -8.34132, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 12.512, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 16.6826, 7] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [9.63173, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [12.0397, -37.5359, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-33.711, -8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -4.17066, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 76 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5422.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4982 Brem photon produced 43 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 52 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3598.45; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4983 Brem photon produced 16 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [26.4873, 62.5599, 18] + [ ecalVeto ] 0 : Hit 1: [24.0793, 58.3892, 17] + [ ecalVeto ] 0 : Hit 2: [26.4873, 54.2186, 16] + [ ecalVeto ] 0 : Hit 3: [24.0793, 50.0479, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [12.0397, 45.8773, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, 41.7066, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, 37.5359, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, 41.7066, 9] + [ ecalVeto ] 0 : Hit 4: [12.0397, 45.8773, 8] + [ ecalVeto ] 0 : Hit 5: [9.63173, 41.7066, 7] + [ ecalVeto ] 0 : Hit 6: [12.0397, 45.8773, 6] + [ ecalVeto ] 0 : Hit 7: [9.63173, 41.7066, 5] + [ ecalVeto ] 0 : Hit 8: [12.0397, 37.5359, 4] + [ ecalVeto ] 0 : Hit 9: [9.63173, 33.3653, 3] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [2.40793, 45.8773, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 50.0479, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 45.8773, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 5: [4.81586, 33.3653, 4] + [ ecalVeto ] 0 : Hit 6: [4.81586, 33.3653, 2] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-2.40793, 37.5359, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, 33.3653, 5] + [ ecalVeto ] 0 : Hit 2: [-2.40793, 37.5359, 4] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [4.81586, 75.0719, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 70.9012, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 1 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 7276.27; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4984 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 12 + [ ecalVeto ] 0 : Beginning track merging using 12 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 10 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-112.237, -127.67, 21] + [ ecalVeto ] 0 : Hit 1: [-109.829, -123.499, 20] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -58.3892, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -62.5599, 10] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -50.0479, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [4.81586, 25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -12.512, 7] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -16.6826, 6] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, 8.34132, 7] + [ ecalVeto ] 0 : Hit 1: [-45.7507, 4.17066, 6] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 1: [2.40793, 12.512, 5] + [ ecalVeto ] 0 : Hit 2: [4.81586, 8.34132, 4] + [ ecalVeto ] 0 : Hit 3: [2.40793, 12.512, 3] + [ ecalVeto ] 0 : Hit 4: [-2.40793, 12.512, 4] + [ ecalVeto ] 0 : Hit 5: [-4.81586, 8.34132, 3] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [26.4873, 20.8533, 6] + [ ecalVeto ] 0 : Hit 1: [26.4873, 20.8533, 4] + [ ecalVeto ] 0 : Hit 2: [19.2635, 25.024, 6] + [ ecalVeto ] 0 : Hit 3: [19.2635, 25.024, 4] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [31.3031, 20.8533, 5] + [ ecalVeto ] 0 : Hit 1: [33.711, 25.024, 4] + [ ecalVeto ] 0 : Hit 2: [31.3031, 20.8533, 3] + [ ecalVeto ] 0 : Track 9: + [ ecalVeto ] 0 : Hit 0: [-33.711, -2.66454e-15, 5] + [ ecalVeto ] 0 : Hit 1: [-31.3031, 4.17066, 4] + [ ecalVeto ] 0 : Finding linreg tracks from 113 hits + [ ecalVeto ] 0 : MIP tracking completed; found 10 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6080.86; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4985 Brem photon produced 13 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 13] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -29.1946, 12] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -25.024, 11] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -29.1946, 10] + [ ecalVeto ] 0 : Hit 4: [-4.81586, -25.024, 9] + [ ecalVeto ] 0 : Hit 5: [-2.40793, -29.1946, 8] + [ ecalVeto ] 0 : Hit 6: [-4.81586, -25.024, 7] + [ ecalVeto ] 0 : Hit 7: [-2.40793, -29.1946, 6] + [ ecalVeto ] 0 : Hit 8: [-4.81586, -25.024, 5] + [ ecalVeto ] 0 : Hit 9: [-2.40793, -29.1946, 4] + [ ecalVeto ] 0 : Hit 10: [-4.81586, -33.3653, 3] + [ ecalVeto ] 0 : Hit 11: [-2.40793, -29.1946, 2] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -25.024, 12] + [ ecalVeto ] 0 : Hit 1: [-12.0397, -29.1946, 11] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -25.024, 10] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -29.1946, 9] + [ ecalVeto ] 0 : Hit 4: [-9.63173, -33.3653, 8] + [ ecalVeto ] 0 : Hit 5: [-12.0397, -29.1946, 7] + [ ecalVeto ] 0 : Hit 6: [-9.63173, -25.024, 6] + [ ecalVeto ] 0 : Hit 7: [-9.63173, -25.024, 4] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -33.3653, 9] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -33.3653, 7] + [ ecalVeto ] 0 : Hit 3: [-4.81586, -33.3653, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [38.5269, -16.6826, 11] + [ ecalVeto ] 0 : Hit 1: [38.5269, -16.6826, 9] + [ ecalVeto ] 0 : Hit 2: [40.9348, -20.8533, 8] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-9.63173, -50.0479, 10] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [-9.63173, -50.0479, 6] + [ ecalVeto ] 0 : Hit 3: [-12.0397, -54.2186, 5] + [ ecalVeto ] 0 : Finding linreg tracks from 73 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3819.26; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4986 Brem photon produced 15 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 74 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4804.96; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4987 Brem photon produced 29 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 56 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4603.82; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4988 Brem photon produced 75 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-16.8555, 79.2426, 14] + [ ecalVeto ] 0 : Hit 1: [-19.2635, 75.0719, 13] + [ ecalVeto ] 0 : Hit 2: [-16.8555, 70.9012, 12] + [ ecalVeto ] 0 : Hit 3: [-19.2635, 66.7306, 11] + [ ecalVeto ] 0 : Hit 4: [-16.8555, 62.5599, 10] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-12.0397, 54.2186, 9] + [ ecalVeto ] 0 : Hit 1: [-9.63173, 50.0479, 8] + [ ecalVeto ] 0 : Hit 2: [-12.0397, 45.8773, 7] + [ ecalVeto ] 0 : Hit 3: [-9.63173, 41.7066, 6] + [ ecalVeto ] 0 : Hit 4: [-12.0397, 45.8773, 5] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-55.3824, 45.8773, 9] + [ ecalVeto ] 0 : Hit 1: [-52.9745, 41.7066, 8] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-39.9993, 127.67, 1] + [ ecalVeto ] 0 : Hit 1: [-37.5914, 131.841, 0] + [ ecalVeto ] 0 : Finding linreg tracks from 57 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5086.8; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4989 Brem photon produced 33 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 8 + [ ecalVeto ] 0 : Beginning track merging using 8 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 7 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [153.172, 190.23, 27] + [ ecalVeto ] 0 : Hit 1: [155.58, 186.059, 26] + [ ecalVeto ] 0 : Hit 2: [153.172, 181.889, 25] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-26.4873, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-24.0793, -33.3653, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-12.0397, -20.8533, 13] + [ ecalVeto ] 0 : Hit 1: [-9.63173, -25.024, 12] + [ ecalVeto ] 0 : Hit 2: [-12.0397, -20.8533, 11] + [ ecalVeto ] 0 : Hit 3: [-9.63173, -16.6826, 10] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -81.7928, 13] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -85.9634, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [19.2635, -8.34132, 10] + [ ecalVeto ] 0 : Hit 1: [16.8555, -4.17066, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-4.81586, -8.34132, 9] + [ ecalVeto ] 0 : Hit 1: [-2.40793, -12.512, 8] + [ ecalVeto ] 0 : Hit 2: [-4.81586, -8.34132, 7] + [ ecalVeto ] 0 : Hit 3: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 4: [2.40793, -4.17066, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, -2.66454e-15, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 4.17066, 5] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [12.0397, -4.17066, 8] + [ ecalVeto ] 0 : Hit 1: [9.63173, -2.66454e-15, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 69 hits + [ ecalVeto ] 0 : MIP tracking completed; found 7 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4601.2; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4990 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-101.67, -54.2186, 24] + [ ecalVeto ] 0 : Hit 1: [-104.078, -50.0479, 23] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -4.17066, 17] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -2.66454e-15, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -8.34132, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -4.17066, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [62.6062, 50.0479, 12] + [ ecalVeto ] 0 : Hit 1: [60.1983, 45.8773, 11] + [ ecalVeto ] 0 : Hit 2: [62.6062, 50.0479, 10] + [ ecalVeto ] 0 : Hit 3: [60.1983, 45.8773, 9] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [2.40793, 12.512, 7] + [ ecalVeto ] 0 : Hit 1: [4.81586, 16.6826, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 29.1946, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 64 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6300.24; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4991 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 6 + [ ecalVeto ] 0 : Beginning track merging using 6 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 6 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-154.644, 79.2426, 19] + [ ecalVeto ] 0 : Hit 1: [-152.237, 75.0719, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-140.197, 70.9012, 17] + [ ecalVeto ] 0 : Hit 1: [-137.789, 66.7306, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-104.078, 58.3892, 13] + [ ecalVeto ] 0 : Hit 1: [-101.67, 54.2186, 12] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-89.6303, 50.0479, 11] + [ ecalVeto ] 0 : Hit 1: [-88.1579, 52.5982, 10] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [24.0793, 8.34132, 11] + [ ecalVeto ] 0 : Hit 1: [24.0793, 8.34132, 9] + [ ecalVeto ] 0 : Hit 2: [26.4873, 12.512, 8] + [ ecalVeto ] 0 : Hit 3: [24.0793, 8.34132, 7] + [ ecalVeto ] 0 : Hit 4: [26.4873, 4.17066, 6] + [ ecalVeto ] 0 : Hit 5: [24.0793, -2.66454e-15, 5] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [24.0793, -2.66454e-15, 9] + [ ecalVeto ] 0 : Hit 1: [24.0793, -2.66454e-15, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 55 hits + [ ecalVeto ] 0 : MIP tracking completed; found 6 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 4056.66; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4992 Brem photon produced 14 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 9 + [ ecalVeto ] 0 : Beginning track merging using 9 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 9 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-69.83, -37.5359, 21] + [ ecalVeto ] 0 : Hit 1: [-69.83, -37.5359, 19] + [ ecalVeto ] 0 : Hit 2: [-67.4221, -41.7066, 18] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-77.0538, -41.7066, 21] + [ ecalVeto ] 0 : Hit 1: [-74.6459, -37.5359, 20] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-62.6062, -41.7066, 17] + [ ecalVeto ] 0 : Hit 1: [-60.1983, -37.5359, 16] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-55.3824, -37.5359, 15] + [ ecalVeto ] 0 : Hit 1: [-52.9745, -33.3653, 14] + [ ecalVeto ] 0 : Hit 2: [-55.3824, -37.5359, 13] + [ ecalVeto ] 0 : Hit 3: [-52.9745, -33.3653, 12] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [12.0397, -54.2186, 12] + [ ecalVeto ] 0 : Hit 1: [9.63173, -50.0479, 11] + [ ecalVeto ] 0 : Hit 2: [12.0397, -45.8773, 10] + [ ecalVeto ] 0 : Hit 3: [9.63173, -41.7066, 9] + [ ecalVeto ] 0 : Track 5: + [ ecalVeto ] 0 : Hit 0: [-48.1586, -33.3653, 11] + [ ecalVeto ] 0 : Hit 1: [-45.7507, -29.1946, 10] + [ ecalVeto ] 0 : Track 6: + [ ecalVeto ] 0 : Hit 0: [-40.9348, -29.1946, 9] + [ ecalVeto ] 0 : Hit 1: [-38.5269, -33.3653, 8] + [ ecalVeto ] 0 : Track 7: + [ ecalVeto ] 0 : Hit 0: [4.81586, -41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -37.5359, 7] + [ ecalVeto ] 0 : Hit 2: [4.81586, -33.3653, 6] + [ ecalVeto ] 0 : Hit 3: [2.40793, -29.1946, 5] + [ ecalVeto ] 0 : Hit 4: [4.81586, -33.3653, 4] + [ ecalVeto ] 0 : Hit 5: [2.40793, -29.1946, 3] + [ ecalVeto ] 0 : Track 8: + [ ecalVeto ] 0 : Hit 0: [-33.711, -33.3653, 7] + [ ecalVeto ] 0 : Hit 1: [-31.3031, -29.1946, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 85 hits + [ ecalVeto ] 0 : MIP tracking completed; found 9 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6883.52; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4993 Brem photon produced 40 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 63 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3885.83; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4994 Brem photon produced 8 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 33 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 2818.86; and decision is pass = true + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4995 Brem photon produced 12 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 0 + [ ecalVeto ] 0 : Beginning track merging using 0 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 0 + [ ecalVeto ] 0 : Finding linreg tracks from 77 hits + [ ecalVeto ] 0 : MIP tracking completed; found 0 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5393.03; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4996 Brem photon produced 46 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 5 + [ ecalVeto ] 0 : Beginning track merging using 5 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 5 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [40.9348, -12.512, 18] + [ ecalVeto ] 0 : Hit 1: [38.5269, -8.34132, 17] + [ ecalVeto ] 0 : Hit 2: [40.9348, -4.17066, 16] + [ ecalVeto ] 0 : Hit 3: [38.5269, -2.66454e-15, 15] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [9.63173, 66.7306, 11] + [ ecalVeto ] 0 : Hit 1: [12.0397, 62.5599, 10] + [ ecalVeto ] 0 : Hit 2: [9.63173, 58.3892, 9] + [ ecalVeto ] 0 : Hit 3: [12.0397, 54.2186, 8] + [ ecalVeto ] 0 : Hit 4: [9.63173, 50.0479, 7] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [12.0397, 54.2186, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 50.0479, 9] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [-45.7507, 29.1946, 8] + [ ecalVeto ] 0 : Hit 1: [-48.1586, 25.024, 7] + [ ecalVeto ] 0 : Track 4: + [ ecalVeto ] 0 : Hit 0: [-26.4873, 29.1946, 7] + [ ecalVeto ] 0 : Hit 1: [-24.0793, 33.3653, 6] + [ ecalVeto ] 0 : Finding linreg tracks from 79 hits + [ ecalVeto ] 0 : MIP tracking completed; found 5 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6050.46; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4997 Brem photon produced 3 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 1 + [ ecalVeto ] 0 : Beginning track merging using 1 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [4.81586, -25.024, 8] + [ ecalVeto ] 0 : Hit 1: [2.40793, -20.8533, 7] + [ ecalVeto ] 0 : Finding linreg tracks from 70 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5221.34; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4998 Brem photon produced 66 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 2 + [ ecalVeto ] 0 : Beginning track merging using 2 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 1 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [12.0397, 20.8533, 10] + [ ecalVeto ] 0 : Hit 1: [9.63173, 25.024, 9] + [ ecalVeto ] 0 : Hit 2: [9.63173, 25.024, 7] + [ ecalVeto ] 0 : Hit 3: [9.63173, 25.024, 5] + [ ecalVeto ] 0 : Hit 4: [2.40793, 20.8533, 7] + [ ecalVeto ] 0 : Hit 5: [4.81586, 25.024, 6] + [ ecalVeto ] 0 : Hit 6: [2.40793, 20.8533, 5] + [ ecalVeto ] 0 : Hit 7: [4.81586, 25.024, 4] + [ ecalVeto ] 0 : Hit 8: [2.40793, 20.8533, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 83 hits + [ ecalVeto ] 0 : MIP tracking completed; found 1 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 6294.76; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 4999 Brem photon produced 22 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 4 + [ ecalVeto ] 0 : Beginning track merging using 4 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 4 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [-116.118, -62.5599, 20] + [ ecalVeto ] 0 : Hit 1: [-118.525, -58.3892, 19] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-90.5659, -73.4515, 17] + [ ecalVeto ] 0 : Hit 1: [-88.1579, -69.2808, 16] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [-2.40793, -4.17066, 6] + [ ecalVeto ] 0 : Hit 1: [-4.81586, -8.34132, 5] + [ ecalVeto ] 0 : Track 3: + [ ecalVeto ] 0 : Hit 0: [73.7103, 60.9395, 5] + [ ecalVeto ] 0 : Hit 1: [76.1183, 56.7688, 4] + [ ecalVeto ] 0 : Hit 2: [74.6459, 54.2186, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 50 hits + [ ecalVeto ] 0 : MIP tracking completed; found 4 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 5103.07; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ EcalProcessFilter ] 0 : [ EcalProcessFilter ]: 5000 Brem photon produced 25 particle via biasWrapper(photonNuclear) process. + [ ecalVeto ] 0 : Straight tracks found (before merge): 3 + [ ecalVeto ] 0 : Beginning track merging using 3 tracks + [ ecalVeto ] 0 : Straight tracks found (after merge): 3 + [ ecalVeto ] 0 : Track 0: + [ ecalVeto ] 0 : Hit 0: [33.711, 50.0479, 20] + [ ecalVeto ] 0 : Hit 1: [31.3031, 54.2186, 19] + [ ecalVeto ] 0 : Hit 2: [33.711, 50.0479, 18] + [ ecalVeto ] 0 : Hit 3: [31.3031, 45.8773, 17] + [ ecalVeto ] 0 : Track 1: + [ ecalVeto ] 0 : Hit 0: [-155.58, 119.329, 15] + [ ecalVeto ] 0 : Hit 1: [-153.172, 115.158, 14] + [ ecalVeto ] 0 : Track 2: + [ ecalVeto ] 0 : Hit 0: [4.81586, 41.7066, 8] + [ ecalVeto ] 0 : Hit 1: [4.81586, 41.7066, 6] + [ ecalVeto ] 0 : Hit 2: [2.40793, 37.5359, 5] + [ ecalVeto ] 0 : Hit 3: [4.81586, 41.7066, 4] + [ ecalVeto ] 0 : Hit 4: [2.40793, 37.5359, 3] + [ ecalVeto ] 0 : Finding linreg tracks from 67 hits + [ ecalVeto ] 0 : MIP tracking completed; found 3 straight tracks and 0 lin-reg tracks + [ ecalVeto ] 0 : The pred > bdtCutVal = false + [ ElectronCounter ] 0 : Found 1 electrons (tracks) using input collection TriggerPadTracksY_ + [ simpleTrig ] 0 : Got trigger energy cut 3000 for 1 electrons counted in the event. + [ simpleTrig ] 0 : Got trigger energy sum 3437.73; and decision is pass = false + [ TrigScintDigiPad1 ] 0 : Looping over hits in trigScintDigisPad1 + [ TrigScintDigiPad2 ] 0 : Looping over hits in trigScintDigisPad2 + [ TrigScintDigiPad3 ] 0 : Looping over hits in trigScintDigisPad3 + [ Process ] 1 : RunHeader { run: 1, numTries: 393794, detectorName: ldmx-det-v14-8gev, description: 8 GeV ECal Kaon PN simulation, xsec bias 550.0 + intParameters: + BiasOperators::PhotoNuclear::Bias Conv Down = 1 + BiasOperators::PhotoNuclear::Only Children Of Primary = 1 + Included Scoring Planes = 1 + RandomNumberMasterSeed[test] = 1 + Use Random Seed from Event Header = 0 + floatParameters: + BiasOperators::PhotoNuclear::Factor = 550 + BiasOperators::PhotoNuclear::Threshold = 5000 + Gen0 Direction X = 0.0485658 + Gen0 Direction Y = 0 + Gen0 Direction Z = 0.99882 + Gen0 Energy [GeV] = 8 + Gen0 Time [ns] = 0 + Gen0 X [mm] = -21.7459 + Gen0 Y [mm] = 0 + Gen0 Z [mm] = -883 + Smear Beam Spot [mm] X = 20 + Smear Beam Spot [mm] Y = 80 + Smear Beam Spot [mm] Z = 0 + stringParameters: + BiasOperators::PhotoNuclear::Volume = ecal + Geant4 revision = + Gen0 Class = simcore::generators::ParticleGun + Gen0 Particle = e- + ldmx-sw revision = +} +[ Simulator ] : Started 393794 events to produce 5000 events. + [ trigScintClustersPad2 ] 0 : Process ends! + [ trigScintClustersPad3 ] 0 : Process ends! + [ trigScintClustersPad1 ] 0 : Process ends! + [ trigScintTrack ] 0 : Process ends! +---- LDMXSW: Event processing complete -------- diff --git a/.github/validation_samples/kaon_enhanced/gold.root b/.github/validation_samples/kaon_enhanced/gold.root new file mode 100644 index 000000000..c3d537c68 Binary files /dev/null and b/.github/validation_samples/kaon_enhanced/gold.root differ