About MC event data standard format and using SSD.jL for charge clouds #325
-
Hello, thank you very much for developing such a user-friendly and convenient project, also thanks to your previous patient answers. According to the tutorial, I use NBodyChargeCloud function to simulate a charge cloud for an event, like this: According to the tutorial, I use this function to simulate waveforms for multiple events like this:
But I don't know how to simulate the waveform of charge cloud for multiple events like from MC data ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Thanks for the question. Maybe first as a general remark: there should be documentation for all exported functions that you can access in the REPL using a question mark and then the function name. For example, to get more information about the MC data function ?simulate_waveforms which gives
You can see, that If you want to simulate each charge cloud with contact_charge_signals = simulate_waveforms(
mc_events_det1,
sim,
Δt = 4u"ns",
verbose = false,
number_of_carriers = 100, # new
diffusion = true, # new
self_repulsion = true, # new
) Is this what you were asking for or is the question how to save the MC data in the format that SolidStateDetectors.jl can interpret it correctly? |
Beta Was this translation helpful? Give feedback.
-
Hello, according to your suggestion, I understand how to solve this problem. Thanks again for your help, best wishes! |
Beta Was this translation helpful? Give feedback.
Thanks for the question.
Maybe first as a general remark: there should be documentation for all exported functions that you can access in the REPL using a question mark and then the function name. For example, to get more information about the MC data function
simulate_waveforms
, you can usewhich gives