Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
tutirial:pythia [2018/12/11 19:45] – minerva1993 | tutirial:pythia [2018/12/17 15:34] (current) – removed minerva1993 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ==== Event Generation Using Pythia ==== | ||
- | Madgraph를 이용해 대부분의 이벤트를 만들 수 있지만, 가끔 복잡한 경우가 있다. (예를 들어 VV: WW, WZ, ZZ) 특수한 경우 Pythia8에서 자체적으로 decay mode를 제공하여 편리하게 이벤트를 만들 수 있다. VV의 경우 CMS simulation도 pythia를 이용해 event를 만들고 있다. ''/ | ||
- | |||
- | < | ||
- | cd work #some working folder | ||
- | wget http:// | ||
- | tar -xvf pythia8235.tgz | ||
- | cd pythia8235 | ||
- | </ | ||
- | |||
- | '' | ||
- | < | ||
- | ./configure --with-hepmc2=/ | ||
- | gmake | ||
- | </ | ||
- | |||
- | 이제 필요한 event를 만들기 위해 '' | ||
- | |||
- | CMS CP5 Tune를 맞추기 위해 다음과 같이 ww.cmnd를 작성한다. '' | ||
- | < | ||
- | ! File: main89.cmnd | ||
- | Main: | ||
- | |||
- | ! Settings related to output in init(), next() and stat(). | ||
- | Init: | ||
- | Init: | ||
- | Init: | ||
- | Init: | ||
- | Next: | ||
- | Next: | ||
- | Next: | ||
- | Next: | ||
- | Next: | ||
- | Stat: | ||
- | |||
- | ! Beam parameter settings. Values below agree with default ones. | ||
- | Beams:idA = 2212 ! first beam, p = 2212, pbar = -2212 | ||
- | Beams:idB = 2212 ! second beam, p = 2212, pbar = -2212 | ||
- | Beams:eCM = 13000. | ||
- | |||
- | WeakDoubleBoson: | ||
- | Tune:pp=14 | ||
- | Tune:ee=7 | ||
- | PDF:pSet=20 | ||
- | MultipartonInteractions: | ||
- | MultipartonInteractions: | ||
- | MultipartonInteractions: | ||
- | MultipartonInteractions: | ||
- | MultipartonInteractions: | ||
- | ColourReconnection: | ||
- | SigmaTotal: | ||
- | SpaceShower: | ||
- | SpaceShower: | ||
- | SigmaProcess: | ||
- | SigmaProcess: | ||
- | MultipartonInteractions: | ||
- | MultipartonInteractions: | ||
- | TimeShower: | ||
- | TimeShower: | ||
- | Tune: | ||
- | Main: | ||
- | Check: | ||
- | Beams: | ||
- | SLHA:keepSM = on | ||
- | SLHA: | ||
- | ParticleDecays: | ||
- | ParticleDecays: | ||
- | ParticleDecays: | ||
- | </ | ||
- | |||
- | < | ||
- | make main89 | ||
- | ./main89 ww.cmnd ww_001.hepmc > log_001.txt | ||
- | </ | ||
- | |||
- | PDF setting을 위해 다음이 (아마도) '' | ||
- | < | ||
- | export ROOTSYS=/ | ||
- | export PYTHONPATH=$ROOTSYS/ | ||
- | export LD_LIBRARY_PATH=$ROOTSYS/ | ||
- | </ | ||
- | 추가한 후에는 '' | ||
- | |||
- | WW의 경우 '' | ||