IntroductionChapter 1. Requirement1. Softwares2. WebsitesChapter 2. Event Generation1. Theoretical Analysis1) channals2)...2. Generator1) WHIZARD2) SimulationChapter 3. ReconstructionChapter 4. Analysis1. Pre-filtering2. Background Analysis3. Signal SelectionChapter 5. Calculation of Branch ratioChapter 6. Error Analysis
CEPCsoft : contains some examples
WHIZARD :Monte Carlo
ROOT : Analysis
ILCSoft : Contains all softs or frame we need. (etc. Mokka, Marlin, Gear ......)
CEPC WEB : website of CEPC
Indico-CEPC :you can find some documents here
2020 BESIII Winter School in Changchun :resources of BES3, whose general analytical frameworks are similar to CEPC.
THCondor : Job submission
Decay channel analysis is the most important step in the whole process. You need to get all the possible decay channels and draw feynman diagram. Provide a source for the background analysis below.
Detailed information is in whizard_manual (Download in our github page)
NOTES : Version 2.X is recommended.
Here's how to run whizard 2.6 in an IHEP server:
Download and set environment :
x> cd /workfs/bes/$USER/
> cp /afs/ihep.ac.cn/users/l/liaoyp/besfs/load_* ./ # copy env files
> source load_cepcsoft.sh
> source load_whizard.sh
Then you can execute "whizard".
For example:
xxxxxxxxxx
> mkdir HelloWorld
> cd HelloWorld
> touch hello.sin # whizard can run .sin(SINDARIN) file
> vim hello.sin
printf "hello world!"
> whizard -r hello.sin
# Then you can see a banner and "hello world!"
# Also, you can write a simple file named ee.sin
process ee = e1,E1 => b,B
sqrts = 240 GeV
n_events = 10
sample_format = lhef
simulate (ee)
# Execute whizard and it will take you several minetes.
# The final result is the desired event file, ee.lhe.
Job submission (HTCondor) :
xxxxxxxxxx
# All commands related to HepJob are in the following directory, which is recommended to be added to the user's environment variable PATH:
> export PATH=/afs/ihep.ac.cn/soft/common/sysgroup/hep_job/bin:$PATH
# Or you can add it in your environment variable file. "./bashrc"
> source ./bashrc
# But I have to note here:if you only do this, you need source the file each time you enter Linux.
# To avoid, do this: add the following codes in "./bash_profile"
if test -f .bashrc ; then
source .bashrc
fi
> hep_sub $yourfile #submit your jobs
> hep_q -u $USER # Job status query
> hep_rm $jobID #remove jobs
# For more details, you can find info in HTCondor.
An job example:
You need submit your job in /besfs/ , otherwise you won't have the permisson to execute the command.
xxxxxxxxxx
> touch jobs_bb.sh
> chmod -R 755 jobs_bb.sh
# Then modify the shell script.
#environment
source /besfs/users/liaoyp/load_cepcsoft.sh
cd /besfs/users/$USERS/TestExample/
# Simulation
cd sim
exec /cvmfs/cepc.ihep.ac.cn/software/cepcsoft/x86_64-sl6-gcc49/cepcsoft/0.1.0-rc9/Simulation/MokkaC/0.1.1/bin/Mokka simu.macro
cd ..
cd /besfs/users/$USERS/TestExample/
# Reconstruction
cd rec
exec /cvmfs/cepc.ihep.ac.cn/software/cepcsoft/x86_64-sl6-gcc49/cepcsoft/0.1.0-rc9/Framework/Marlin/01-05/bin/Marlin reco.xml
cd ..
xxxxxxxxxx
#Bb.sin
#Claim of model
model = SM
#Define the mass of particles
me = 0
...
#Define the alias
alias l = e1:e2:e3
alias L = E1:E2:E3
#Define the process
process bb = e1, E1 => B,b
#Compile the process into library
compile
?rebuild_library = true
?rebuild_grids = true
#Define the beam
sqrts = 90 GeV
n_events = 1000
beams = e1,E1 => isr,isr
#Default CEPC setting
$circe2_file = "cepc91.circe"
$circe2_design = "CEPC"
$circe2_polarized = false
isr_alpha = 0.0072993
isr_mass = 0.000511
#Hadronization and fragmentation
$shower_method = "PYTHIA6"
?ps_isr_active = true
?ps_fsr_active = true
?hadronization_active = true
# Integrate the process
integrate(bb)
simulate(bb) {sample_format = stdhep $extension_stdhep = "stdhep"}
# "stdhep" is the most common type of generator file.
Or, you can find some existing samples in /cefs/data/stdhep/CEPC91/2fermions
Generate information of momentum from the generator and pass it on to the detector.
More details of Mokka could be found in MokkaFiles (Download in our github page) and MokkaPage.
xxxxxxxxxx
# Download test example.
git clone http://USERNAME@cepcgit.ihep.ac.cn/cepcsoft/TestExample.git
cd TestExample/sim/ # You need modify the "event.macro" and "simu.macro".
# simu.macro:
/Mokka/init/lcioFilename ../output/bb_sim.slcio # rename the output file
# simu.macro can change stdhep into slcio.
# event.macro:
/generator/generator ../stdhep/xxxxx.stdhep #move you stdhep file to diretory and choose your stdhep.
/run/beamOn 100 #set the number of event simulation
#run simulation
Mokka simu.macro
#For more details of Mokka, you can:
which Mokka
#Then search for some info there. Have fun!
After simulation, what you get are electronic signals. Then the next step is to change electronic signals to physical information.
In this step, we can choose to the official files directly and set your own value. However, if you are doing research on detector, you need not do that.
More details of Marlin could be found in MarlinPage and his subpage MarlinManual .
xxxxxxxxxx
cd TestExample/rec/
#the rec directory includes the script reco.xml for reconstruction. This is a Marlin steer file.
# You need modify the reco.xml and replace all default file names with your file name.
Marlin reco.xml
# The you can find all output files in /output/
After you finish all steps as shows, the data files just contain all simulation data.
So, you need select the cases you want. And this is Analysis Step.
In this step, you need write your own special package to analyze the data you get. And in our research, we recommend you to use C++ for analyze data.
You can find some examples in Analysis Example of CEPCsoft .
Also, some details of applying your package to analysis are in MarlinReco_Manual, which you can read in our github page.
General steps of pre-screening (Libo Liao, Hangzhou normal university, 2017) :
In pre-filtering, the inv mass of e,e- is reduced to a specific interval (in the NU, c=hbar=1 to simplify the calculation, so that the dimensions of energy, momentum and mass are the same) to increase the proportion of the signal case and cut background case.
Several common background deduction methods:
mass selection
The number of remaining particles is used for selection. In this process, 3-n (whose specific values have not been analyzed) remaining final state particles are selected.
observe Jet
By observing the constant mass peak of jet, speculate that an example of jet may be formed. Taking b quark jet as an example, the data of existing b quark jet was compared with the data, and the similar value b-tag was used for selection.
secondary vertex
For long-lived particles, because they don't decay quickly. So it's going to keep moving and it's going to create a subpeak, a secondary vertex. By looking at the secondary vertices, you can subtract some of the background.
momentum filtering
It can be deducted by using the small or large transverse momentum of some particles.
After the background deduction, the number of signal cases is reduced step by step, and finally we get the signal cases of the decay channel we need.