-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathChangeLog
2000 lines (1202 loc) · 69.9 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Please consult the version control log file for newer entries.
2009-09-30 Leif Lönnblad <Leif.Lonnblad@thep.lu.se>
* src/defaults/HerwigDefaults.in: Change the way the
DefaultStrategy object select which particles are included in a
run.
2009-09-29 Leif Lönnblad <Leif.Lonnblad@thep.lu.se>
* src/Makefile.am (install-data-hook): Install the Herwig
repository inside the default ThePEG repository.
* PDT/GenericMassGenerator.cc,
PDT/GenericWidthGenerator.cc (setParticle): First check if the
argument is a valid name of a (particle) object, then check if
the argument is a general particle name.
2006-10-27 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Helicity/Vertex/Susy/* : Tidy up and correction of some minor errors
* MatrixElement/{MEff2ff, MEff2ss, MEfv2fs, MEvv2ff, MEvv2ss} : Tidy up
of code and moved of diagrams and getDiagrams functions to base class
since they are generic
* MatrixElement/GeneralHardME.{h, cc} : Implemented getDiagrams()
member function here instead of in derived classes
* Models/General/HardProcessConstructor.cc : Tidy up of code
* Models/General/HPDiagram : Fixed doxygen warning and removed
uneeded ThePEG header
2006-10-23 Martyn Gigg <m.a.gigg@dur.ac.uk>
* MatrixElement/VVFFbarME.*, VVSSME.*, FFbarSSME.* : Renamed matrix
elements to be more in line with naming convention
* Models/General/HardProcessConstructor.{h, cc} : Changes to reflect
renaming of MatrixElements
2006-10-19 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Helicity/Vertex/Susy/SSCNZWVertex.* : Added chargino-neutralino-W
vertex.
* Helicity/Vertex/Susy/* : Various corrections to vertices.
* Models/Susy/SusyBase.{h, cc} : Added SSCNWVertex to vertex list
2006-10-19 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Helicity/Vertex/Susy/SSCC{Z, P}Vertex.* : Added chargino-chargino-photon
and chargino-chargino-Z vertices
* Models/Susy/SusyBase.{h, cc} : Added new vertices to list
2006-10-18 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Helicity/Vertex/Scalar/FFSVertex.{h, cc} : Added an integer param to
the setCoupling method to identify off-shell particle in vertex
* Helicity/Vertex/Susy/* : Fixed compiler warnings and various bugs
within the majorana vertices
* Helicity/Vertex/StandardModel/SMFFHVertex.h : Updated to use new
setCoupling method in FFSVertex
* Decay/General/FFSDecayer.cc, Decay/General/SFFDecayer.cc : Updated to
use new setCoupling in FFSVertex
2006-10-10 Martyn Gigg <m.a.gigg@dur.ac.uk>
* MatrixElement/MEff2ff.* : Added matrix element for ffbar to ffbar
* MatrixElement/MEfv2fs.cc : Corrected diagram calculation
* Models/General/HardProcessConstructor.cc, HPDiagram.icc : Changes in
line with matrix element changes
* Helicity/Vertex/Susy/SSNNZVertex.* : Added neutralino-neutralino-
Z vertex
* Helicity/Vertex/Susy/SSCFSVertex.icc : Fixed typo with sin2Theta
where sqrt was forgotten
* Models/Susy/SusyBase.{h, cc} : Added SSNNZVertex to list of vertices
within the Model
2006-10-03 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Models/General/HPDiagram.*, Models/General/HardProcessConstructor.* :
Changes to the way colourflows are calculated
* MatrixElement/GeneralHardME.* : Changes in matrix element
implementation to reflect the changes in the HardProcessConstructor
and HPDiagram
* Helicity/Vertex/StandardModel/*.icc, Helicity/Vertex/Susy/*.icc :
Replaced memebrs that set the order in alphaS and alphaEM that had
been removed
* Helicity/Vertex/Susy/{SSGFSVertex.cc, SSNFSVertex.cc} : Changed
setCoupling so that vertex is evaluated properly if fermion flow
direction is reversed
2006-08-18 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Models/General/HPDiagram.{h, icc} : Split off declaration of
HPDiagram structure to separate file and made some changes to the
information that it stores so that MEDiagram in GeneralHardME could
be removed
* Models/General/HardProcessConstructor.* : Changes to use new
object creation methods of ThePEG and tidy up of code (not complete)
* MatrixElement/{GeneralHardME.*, VVFFbarME.*, VVSSME.*} :
Changes to MatrixElements to be compatible with new way in which
HardProcessConstructor creates them
2006-08-17 Martyn Gigg <m.a.gigg@dur.ac.uk>
* MatrixElement/GeneralHardME.{h, icc, cc},
* MatrixElement/VVFFbar.{h, icc, cc} : Changed the method of
calculating the matrix element colour flows
* Models/StandardModel/StandardModel.{h, cc} : Removed obselete
doinitrun method and removed call to setupModel from doinit
* Models/General/* : Changes to the structure of automatic decayer,
decaymode and matrix element creation to utilise new functions in
ThePEG. Requires up-to-date version of ThePEG.
* Decay/General/* : Removed old members not needed now the decayers
are created properly in the EventGenerator and modeNumber virtual
function is now implemented. This required a new member function
colourConnections() that must be called in the me2() function of
each inheriting decayer.
* src/{LEP.in, Model.in} : Removed double initilisation from LEP.in
and removed reference to model pointer from HardProcessConstructor
* Models/Susy/SusyBase.{h, icc, cc} : Implemented getReferences
virtual function so that MixingMatrix objects get cloned.
* Helicity/Vertex/Susy/* : Removed references to SusyBase object and
changed the way in which MixingMatrices were retrieved. They are now
taken from the current event generator and not the Repository.
* Helicity/Vertex/Scalar/SVVLoopVertex.{h, icc} : Replaced interface
doinit, doinitrun and dofinish members that were mistakenly removed.
* Helicity/Vertex/GeneralSVVVertex.icc : Correctly set the type of
vertex in the constructor
2006-07-26 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Models/Susy/SusyBase.*, Models/General/TwoBodyDecayConstructor.cc,
* Models/General/HardProcessConstructor.cc: Changed use of stringstream
to comply with the new changes in the ThePEG and uninlined 2 functions
in SusyBase that should not have been inlined
2006-07-24 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Helicity/Vertex/Susy/* : Clean up to tidy up code and remove
some unecessary member functions
2006-07-22 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Helicity/Vertex/*Model/*Vertex.*, Models/*Model/*: Fixed memory
leak problem with theback-references to StandardModel by the Vertex
classes. Cleanup of Vertex classes.
* MatrixElement/*.*cc, Decay/Perturbative/*.cc: Used new Model
typedefs HwSMPtr and HwRSPtr
2006-07-18 Martyn Gigg <m.a.gigg@dur.ac.uk>
* MatrixElement/Makefile.am : Fixed spelling error that meant
some files were not included in tar ball
* src/Model.in : Now creates HardProcessConstructor object
by default
* Helicity/Vertex/Susy/SSGSGSGVertex.* : Added gluon-gluino-
gluino vertex
* Models/Susy/SusyBase.* : Added gluon-gluino-gluino vertex
to list of vertices
* Helicity/Vertex/Susy/SSNFSVertex : Corrected error with
retrieving particle mass
* Helicity/Vertex/Scalar/GeneralSVVVertex.h : Changes so that class
shows up in doxygen documentation
* Shower/ShowerHandler.cc : Changed how to deduce whether a particle
is a decay product
* Models/General/TwoBodyDecayConstructor.cc : Taken out repository
stats output
* Decay/MamboDecayer.cc : Fixed colourlines for decaying colour
octet states
* Decay/General/GeneralTwoBodyDecayer.cc : Taken out statement
printing decay modes
2006-07-07 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Merged latest changes from trunk
2006-07-05 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Helicity/Vertex/Scalar/VSSVeretex.cc : Corrected mistake in
function evaluating the vertex
2006-06-30 Martyn Gigg <m.a.gigg@dur.ac.uk>
* MatrixElement/VVSSME.*, FFbarSSME.*: Added new matrix elements
* Helicity/Vertex/* : Tidy up of documentation and added new gluon
gluon-squark-squark vertex
* lib/Makefile.am : StandardModel vertices are now dynamically loaded
* Models/General/HardProcessConstructor.cc : Changed the way diagrams
are created for matrix elements
* Models/Susy/SusyBase.* : Added new vertex to model
2006-07-22 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Helicity/Vertex/*Model/*Vertex.*, Models/*Model/*: Fixed memory
leak problem with theback-references to StandardModel by the Vertex
classes. Cleanup of Vertex classes.
* MatrixElement/*.*cc, Decay/Perturbative/*.cc: Used new Model
typedefs HwSMPtr and HwRSPtr
2006-06-30 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Models/StandardModel/O2AlphaS.*: changed LambdaQCD() output to
return vector starting with Lambda_0 instead of Lambda_1. In line
with ThePEG
2006-06-30 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Models/StandardModel/O2AlphaS.*: changed LambdaQCD() output to
return vector starting with Lambda_0 instead of Lambda_1. In line
with ThePEG
2006-06-13 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Decay/Perturbative/Makefile.am: SMWZDecayer and SMTopDecayer
need to be built by default. Split out HwPerturbativeHiggsDecay.so
2006-06-13 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Decay/Perturbative/Makefile.am: SMWZDecayer and SMTopDecayer
need to be built by default. Split out HwPerturbativeHiggsDecay.so
2006-06-07 David Grellscheid <David.Grellscheid@durham.ac.uk>
* */Makefile.am, acinclude.m4, configure.ac: New decayers only get
built when requested in configure flag. Apple Looptool problem
fixed. Optionally, all Looptool-dependent code can be disabled.
2006-06-07 David Grellscheid <David.Grellscheid@durham.ac.uk>
* */Makefile.am, acinclude.m4, configure.ac: New decayers only get
built when requested in configure flag. Apple Looptool problem
fixed. Optionally, all Looptool-dependent code can be disabled.
2006-06-01 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Analysis/LEPEventShapes.*, Utilities/Histogram.*,
Utilities/Statistic.*: Added support for weighted events.
* src/Herwig++.cc: counter now only updates for every 1% of events.
2006-06-01 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Analysis/LEPEventShapes.*, Utilities/Histogram.*,
Utilities/Statistic.*: Added support for weighted events.
* src/Herwig++.cc: counter now only updates for every 1% of events.
2006-05-30 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Helicity/Vertex/VertexBase.h (Repository): Added storage for the
order in g_s and alpha_em of the vertex
* Helicity/Vertex/StandardModel, Helicity/Vertex/Susy (Repository) :
Changed vertices to incorporate new method for storing order in
couplings and added gluon-sfermion-sfermion vertex
* MatrixElement/GeneralHardME, MatrixElement/FFbarSSME (Repository):
Added new matrix elements
* Decay/MamboDecayer.*, Decay/General (Repository) : Tidy up
* lib/Makefile.am (Repository) : Statically linked new matrix
element library
* Models/General/* (Repository) : Changed to create new matrix
elements and general tidy up
* Models/Susy/SusyBase.* (Repository) : Incorporate new vertices
into model
* Models/Susy/MixingMatrix.icc (Repository) : Changed constructor to
use initialisation syntax
2006-05-30 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Models/General (Repository): Added HardProcessConstructor class
* Models/Susy/MixingMatrix (Repository): Modified range checking when
returning element of matrix to use at() member of vector
* Decay/General (Repository): Tidy up of decayers
* Helicity/Vertex/Susy (Repository): Fixed bugs where if was using
assignment rather than testing for equality
2006-06-18 Martyn Gigg <m.a.gigg@dur.ac.uk>
* configure.ac (Repository): Added Susy vertices directory
* Models/StandardModel/O2AlphaS.h (Repository): Merged from main branch
* Models/General (Repository): Modified classes to use new decayers
* Models/Susy (Repository): Modified SusyBase reading member funtion
* Helicity/Vertex/Susy (Repository): Added Susy Directory and Vertices
* Models/General/ (Repository): Added New Decayers and and altered old
ones to change the way they search lists
2006-03-13 Peter Richardson <Peter.Richardson@durham.ac.uk>
* MatrixElement/MEPP2HiggsJet.icc (Repository): added matrix element for gamma
gamma and Higgs + jet production
2006-03-13 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Models/General/TwoBodyDecayConstructor.cc (Repository): Changed in order to create new decayers
* Models/Makefile.am, configure.ac (Repository): Altered to include Susy directory
* Models/Susy (Repository): Added Susy directory and SusyBase class
2006-03-13 Peter Richardson <Peter.Richardson@durham.ac.uk>
* MatrixElement/MEPP2HiggsJet.icc (Repository): added matrix element for gamma
gamma and Higgs + jet production
2006-03-09 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Decay/General (Repository): Added FFSDecayer,VVVDecayer,SSSDecayer
2006-03-02 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Models/StandardModel/O2AlphaS: Added a 2-loop alphaS class using the same
approach as FORTRAN HERWIG to make comparisions easier.
2006-03-02 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Models/StandardModel/O2AlphaS: Added a 2-loop alphaS class using the same
approach as FORTRAN HERWIG to make comparisions easier.
2006-02-27 Peter Richardson <Peter.Richardson@durham.ac.uk>
* MatrixElement/MEPP2GammaJet.h (Repository): spin correlation code added to
gamma+jets ME
2006-02-27 Peter Richardson <Peter.Richardson@durham.ac.uk>
* MatrixElement/MEQCD2to2 (Repository): QCD 2-to-2 matrix elements added
2006-02-27 Peter Richardson <Peter.Richardson@durham.ac.uk>
* MatrixElement/MEPP2GammaJet.h (Repository): spin correlation code added to
gamma+jets ME
2006-02-27 Peter Richardson <Peter.Richardson@durham.ac.uk>
* MatrixElement/MEQCD2to2 (Repository): QCD 2-to-2 matrix elements added
2006-02-22 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Finished the removal of the VectorMesonDecayerBase and TensorMesonDecayerBase
classes
2006-02-22 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Base class changed in a number of Vector decayers in preparation for the
removal of the VectorMesonDecayerBase class.
2006-02-22 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Finished the removal of the VectorMesonDecayerBase and TensorMesonDecayerBase
classes
2006-02-22 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Base class changed in a number of Vector decayers in preparation for the
removal of the VectorMesonDecayerBase class.
2006-02-21 Peter Richardson <Peter.Richardson@durham.ac.uk>
* changes to fix change conservation problems from branch merge
and change base class of TensorMeson2MesonDecayer.
2006-02-21 Peter Richardson <Peter.Richardson@durham.ac.uk>
* changes to include the matrix element for gamma+jet
2006-02-21 Peter Richardson <Peter.Richardson@durham.ac.uk>
* changes to fix change conservation problems from branch merge
and change base class of TensorMeson2MesonDecayer.
2006-02-21 Peter Richardson <Peter.Richardson@durham.ac.uk>
* changes to include the matrix element for gamma+jet
2006-02-20 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Models/General/TwoBodyDecayConstructor.cc (Repository): Changes to create newly added decayers
* Decay/General (Repository): Added more decayers for bsm study
* Helicity/Vertex/VertexBase.h (Repository): Changed getLeft() and getRight() from protected to public
* Helicity/WaveFunction/ScalarWaveFunction.cc (Repository): Changed one of the special constructors to set particle pointer and momentum properly
* Helicity/Vertex/Scalar/GeneralSVVVertex.cc (Repository): Documentation changes
* Models/RSModel/RSModel.icc (Repository): Added RS Vertices to storage in base class
* Models/StandardModel/StandardModel.cc (Repository): Initialized running mass object in doinit
* Decay/General/GeneralTwoBodyDecayer.h (Repository): Changes to store pointer to vertex in each decayer
2006-02-16 David Grellscheid <David.Grellscheid@durham.ac.uk>
* src/HerwigDefaults.in: New handling of cuts in ThePEG
2006-02-16 David Grellscheid <David.Grellscheid@durham.ac.uk>
* src/HerwigDefaults.in: New handling of cuts in ThePEG
2006-02-07 David Grellscheid <David.Grellscheid@durham.ac.uk>
* configure.ac, README, AUTHORS: Last updates, tagged and
published as Herwig++-2.0-beta release. Merged release branch into
main up until tag herwig-2-0-beta
2006-02-07 David Grellscheid <David.Grellscheid@durham.ac.uk>
* configure.ac, README, AUTHORS: Last updates, tagged and
published as Herwig++-2.0-beta release. Merged release branch into
main up until tag herwig-2-0-beta
2006-02-03 David Grellscheid <David.Grellscheid@durham.ac.uk>
* MatrixElement/MEqq2W2ll.cc: Bugfix for unititialized
variable. Solves imbalance between W+ and W-.
2006-02-03 David Grellscheid <David.Grellscheid@durham.ac.uk>
* MatrixElement/MEqq2W2ll.cc: Bugfix for unititialized
variable. Solves imbalance between W+ and W-.
2006-02-02 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Shower/ShowerHandler.cc, Hadronization/PartonSplitter.cc: Added
eventerror for spacelike gluons in PartonSplitter. Added check for
QCD-FSR when doing ME corrections.
2006-02-02 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Shower/ShowerHandler.cc, Hadronization/PartonSplitter.cc: Added
eventerror for spacelike gluons in PartonSplitter. Added check for
QCD-FSR when doing ME corrections.
2006-02-01 David Grellscheid <David.Grellscheid@durham.ac.uk>
* all: Branched off herwig-2-0-beta-release branch, then merged
Decay Radiation branch. Structural changes to decayers.
* Utilities/Math.cc, Decay/Perturbative/SMTopDecayer.h,
SMHiggsGGHiggsPPDecayer.h, SMHiggsFermionsDecayer.h: Temporary
fixes to allow compilation.
2006-02-01 David Grellscheid <David.Grellscheid@durham.ac.uk>
* all: Branched off herwig-2-0-beta-release branch, then merged
Decay Radiation branch. Structural changes to decayers.
* Utilities/Math.cc, Decay/Perturbative/SMTopDecayer.h,
SMHiggsGGHiggsPPDecayer.h, SMHiggsFermionsDecayer.h: Temporary
fixes to allow compilation.
2006-01-31 David Grellscheid <David.Grellscheid@durham.ac.uk>
* src/Shower.in, Shower/SplittingFunctions: Individual PDFMax
limits for efficiency.
* Decay/HwDecayHandler.cc: Added vertex setting to handle displaced
vertices.
2006-01-31 Martyn Gigg <m.a.gigg@dur.ac.uk>
* src/HerwigDefaults.in: Updating after main-to-bsm merge
* Models/General/TwoBodyDecayConstructor.cc: Added creation of FFV decayer
* Decay/General/FFVDecayer.h (Repository): Added FFVDecayer for bsm
2006-01-31 David Grellscheid <David.Grellscheid@durham.ac.uk>
* src/Shower.in, Shower/SplittingFunctions: Individual PDFMax
limits for efficiency.
* Decay/HwDecayHandler.cc: Added vertex setting to handle displaced
vertices.
2006-01-26 David Grellscheid <David.Grellscheid@durham.ac.uk>
* MatrixElements/*: New qq->W->ll and ee->gZ->qq matrix
elements. Replaced default qq->gZ->ll
* src/Analysis.in, Analysis/SimpleLHCAnalysis.*,
Analysis/Histogram.*, Analysis/BasicConsistency.*: Added
SimpleLHCAnalysis, cleaned up Histogram class and BasicConsistency
analysis.
* src/Shower.in, Shower/PartnerFinder.cc,
Shower/KinematicsReconstructor.cc, Shower/Evolver.cc,
Shower/BackwardEvolver.cc: fixed ISR/FSR crash for LHC. This is
NOT a permanent solution, there is no timelike showering of ISR
particles at the moment!
2006-01-26 David Grellscheid <David.Grellscheid@durham.ac.uk>
* MatrixElements/*: New qq->W->ll and ee->gZ->qq matrix
elements. Replaced default qq->gZ->ll
* src/Analysis.in, Analysis/SimpleLHCAnalysis.*,
Analysis/Histogram.*, Analysis/BasicConsistency.*: Added
SimpleLHCAnalysis, cleaned up Histogram class and BasicConsistency
analysis.
* src/Shower.in, Shower/PartnerFinder.cc,
Shower/KinematicsReconstructor.cc, Shower/Evolver.cc,
Shower/BackwardEvolver.cc: fixed ISR/FSR crash for LHC. This is
NOT a permanent solution, there is no timelike showering of ISR
particles at the moment!
2006-01-24 David Grellscheid <David.Grellscheid@durham.ac.uk>
* PDF/MRST.cc: Restructured for speed, high-x problem unchanged
2006-01-24 David Grellscheid <David.Grellscheid@durham.ac.uk>
* PDF/MRST.cc: Restructured for speed, high-x problem unchanged
2006-01-24 David Grellscheid <David.Grellscheid@durham.ac.uk>
* PDF/MRST.cc: Restructured for speed, high-x problem unchanged
2006-01-23 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Analysis/*: Added more simple analysis handlers for multiplicity
checking and general consistency.
* src/Hadronization.in: reset s-quark weight to 1.0
* PDF/MRST.cc: Added GeV2 to fix wrong PDF behaviour
2006-01-23 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Added basic analysis handlers
2006-01-23 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Analysis/*: Added more simple analysis handlers for multiplicity
checking and general consistency.
* src/Hadronization.in: reset s-quark weight to 1.0
* PDF/MRST.cc: Added GeV2 to fix wrong PDF behaviour
2006-01-23 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Added basic analysis handlers
2006-01-23 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Analysis/*: Added more simple analysis handlers for multiplicity
checking and general consistency.
* src/Hadronization.in: reset s-quark weight to 1.0
* PDF/MRST.cc: Added GeV2 to fix wrong PDF behaviour
2006-01-23 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Added basic analysis handlers
2006-01-20 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Decay/General/VFFDecayer.icc (Repository): Altered default contructor to set which list to search
* Models/General/TwoBodyDecayConstructor.cc (Repository): Added functionality to create decaymodes dynamically
2006-01-06 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Various changes to get the forced splitting to work
* Shower/Makefile.am (Repository): Change to Makefile due to move of SudakovFormFactor to SplittingFunctions directory
2006-01-06 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Various changes to get the forced splitting to work
* Shower/Makefile.am (Repository): Change to Makefile due to move of SudakovFormFactor to SplittingFunctions directory
2006-01-06 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Various changes to get the forced splitting to work
* Shower/Makefile.am (Repository): Change to Makefile due to move of SudakovFormFactor to SplittingFunctions directory
2005-12-22 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Shower/ForwardEvolver.cc (Repository): SplttingFunctions and related classes cleaned up and moved to new directory
2005-12-22 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Shower/ForwardEvolver.cc (Repository): SplttingFunctions and related classes cleaned up and moved to new directory
2005-12-22 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Shower/ForwardEvolver.cc (Repository): SplttingFunctions and related classes cleaned up and moved to new directory
2005-12-18 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Shower/SudakovFormFactor.cc: Veto bugs fixed
* Shower/KinematicsReconstructor.cc, Shower/BackwardEvolver.cc:
wrapped forced splittings in '#ifdef PHILSCODE', to make Shower
testing work (also in PDF/BaryonRemnants.cc)
* Shower/SplittingGenerator.cc: small change, wrapped some 'cout'
in a DEBUG_LEVEL test
* Hadronization/ClusterHadronizationHandler.cc: added missing
Remnant code
* src/Shower.in: typo c->c,cbar fixed to g->c,cbar; cleaned up
arrangement
2005-12-18 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Shower/SudakovFormFactor.cc: Veto bugs fixed
* Shower/KinematicsReconstructor.cc, Shower/BackwardEvolver.cc:
wrapped forced splittings in '#ifdef PHILSCODE', to make Shower
testing work (also in PDF/BaryonRemnants.cc)
* Shower/SplittingGenerator.cc: small change, wrapped some 'cout'
in a DEBUG_LEVEL test
* Hadronization/ClusterHadronizationHandler.cc: added missing
Remnant code
* src/Shower.in: typo c->c,cbar fixed to g->c,cbar; cleaned up
arrangement
2005-12-18 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Shower/SudakovFormFactor.cc: Veto bugs fixed
* Shower/KinematicsReconstructor.cc, Shower/BackwardEvolver.cc:
wrapped forced splittings in '#ifdef PHILSCODE', to make Shower
testing work (also in PDF/BaryonRemnants.cc)
* Shower/SplittingGenerator.cc: small change, wrapped some 'cout'
in a DEBUG_LEVEL test
* Hadronization/ClusterHadronizationHandler.cc: added missing
Remnant code
* src/Shower.in: typo c->c,cbar fixed to g->c,cbar; cleaned up
arrangement
2005-12-17 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Shower/*, src/*.in ( and others ): Full merge of Stefan's Shower
changes, Phil's refactoring of forced splitting, Peter's Remnant
class and Durham bugfixes. NOT tested yet.
* PDF/BaryonRemnants.cc: Remnant and forced splitting don't work
together so far. File contains #defines to choose version. This
must be resolved! NOT tested yet.
2005-12-17 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Shower/*, src/*.in ( and others ): Full merge of Stefan's Shower
changes, Phil's refactoring of forced splitting, Peter's Remnant
class and Durham bugfixes. NOT tested yet.
* PDF/BaryonRemnants.cc: Remnant and forced splitting don't work
together so far. File contains #defines to choose version. This
must be resolved! NOT tested yet.
2005-12-17 David Grellscheid <David.Grellscheid@durham.ac.uk>
* Shower/*, src/*.in ( and others ): Full merge of Stefan's Shower
changes, Phil's refactoring of forced splitting, Peter's Remnant
class and Durham bugfixes. NOT tested yet.
* PDF/BaryonRemnants.cc: Remnant and forced splitting don't work
together so far. File contains #defines to choose version. This
must be resolved! NOT tested yet.
2005-12-15 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Helicity/Vertex/Scalar/FFSVertex.h (Repository): Changed access for getting left and right components
2005-12-09 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Models/General/TwoBodyDecayConstructor.h (Repository): Added functions to create decayer and decay list
2005-12-09 Martyn Gigg <dph3mag@d52.phyip3.dur.ac.uk>
* Decay/General/GeneralTwoBodyDecayer.cc (Repository): Added two body decayer class files
2005-11-15 Pete's account <Peter.Richardson@durham.ac.uk>
* src/StandardModelVertices.in: changes to decay structure to avoid code duplication
2005-11-15 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Decay/Radiation/FFDipole.cc (Repository): changes to FF Dipole
2005-11-15 Pete's account <Peter.Richardson@durham.ac.uk>
* src/StandardModelVertices.in: changes to decay structure to avoid code duplication
2005-11-15 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Decay/Radiation/FFDipole.cc (Repository): changes to FF Dipole
2005-11-04 Martyn Gigg <dph3mag@d31.phyip3.dur.ac.uk>
* Helicity/Vertex/VertexBase.h (Repository): Changed VertexBase to allow for enumerating inheriting vertices
2005-11-01 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Models/General/DecayConstructor.h (Repository): Added DecayConstructor and other files for BSM structure
2005-10-25 Martyn Gigg <dph3mag@d31.phyip3.dur.ac.uk>
* Decay/Perturbative/SMHiggsGGHiggsPPDecayer.h (Repository): Renamed SMHDecayer to SMHiggsGGHiggsPPDecayer
2005-10-25 Peter Richardson <Peter.Richardson@durham.ac.uk>
* src (Repository): correction to ensure HGG and HPP work and minor structure for vertices
2005-10-25 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Models/General/ModelGenerator.fh (Repository): added files for new branch
2005-10-25 Martyn Gigg <dph3mag@d31.phyip3.dur.ac.uk>
* Decay/Perturbative/SMHiggsGGHiggsPPDecayer.h (Repository): Renamed SMHDecayer to SMHiggsGGHiggsPPDecayer
2005-10-25 Peter Richardson <Peter.Richardson@durham.ac.uk>
* src (Repository): correction to ensure HGG and HPP work and minor structure for vertices
2005-10-25 Martyn Gigg <dph3mag@d31.phyip3.dur.ac.uk>
* Decay/Perturbative/SMHiggsGGHiggsPPDecayer.h (Repository): Renamed SMHDecayer to SMHiggsGGHiggsPPDecayer
2005-10-25 Peter Richardson <Peter.Richardson@durham.ac.uk>
* src (Repository): correction to ensure HGG and HPP work and minor structure for vertices
2005-10-24 Martyn Gigg <dph3mag@d31.phyip3.dur.ac.uk>
* Helicity/Vertex/StandardModel/SMHPPVertex.h (Repository): Added SMHPPVertex class
* Helicity/Vertex/StandardModel/SMHGGVertex.h (Repository): Added SMHGGVertex
* Helicity/Vertex/Scalar/SVVLoopVertex.h (Repository): Added SVVLoopVertex class
* Helicity/Vertex/Scalar/GeneralSVVVertex.h (Repository): Added GeneralSVVVertex class
* Decay/Perturbative/SMHDecayer.h (Repository): Added HVV decayer
2005-10-24 Martyn Gigg <dph3mag@d31.phyip3.dur.ac.uk>
* Helicity/Vertex/StandardModel/SMHPPVertex.h (Repository): Added SMHPPVertex class
* Helicity/Vertex/StandardModel/SMHGGVertex.h (Repository): Added SMHGGVertex
* Helicity/Vertex/Scalar/SVVLoopVertex.h (Repository): Added SVVLoopVertex class
* Helicity/Vertex/Scalar/GeneralSVVVertex.h (Repository): Added GeneralSVVVertex class
* Decay/Perturbative/SMHDecayer.h (Repository): Added HVV decayer
2005-10-24 Martyn Gigg <dph3mag@d31.phyip3.dur.ac.uk>
* Helicity/Vertex/StandardModel/SMHPPVertex.h (Repository): Added SMHPPVertex class
* Helicity/Vertex/StandardModel/SMHGGVertex.h (Repository): Added SMHGGVertex
* Helicity/Vertex/Scalar/SVVLoopVertex.h (Repository): Added SVVLoopVertex class
* Helicity/Vertex/Scalar/GeneralSVVVertex.h (Repository): Added GeneralSVVVertex class
* Decay/Perturbative/SMHDecayer.h (Repository): Added HVV decayer
2005-10-19 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Helicity/Vertex/StandardModel/SMFFHVertex.cc (Repository): changes to remove hard-wired value of pi
* Helicity/WaveFunction/ScalarWaveFunction.cc (Repository): changes to correctly return rho matrix
* Decay/Perturbative/SMWZDecayer.icc (Repository): modifications to SMWZDecayer to clean up code using new constructors to produce spinInfo
* Helicity/Vertex/Vector/FFVVertex.h (Repository): added .fh file for FFVVertex
* Decay/Perturbative/SMWZDecayer.h (Repository): added decayer for H -> f fbar
* Helicity/Vertex/Scalar/Makefile.am (Repository): changes to include .fh file for FFSVertex
2005-10-19 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Helicity/Vertex/StandardModel/SMFFHVertex.cc (Repository): changes to remove hard-wired value of pi
* Helicity/WaveFunction/ScalarWaveFunction.cc (Repository): changes to correctly return rho matrix
* Decay/Perturbative/SMWZDecayer.icc (Repository): modifications to SMWZDecayer to clean up code using new constructors to produce spinInfo
* Helicity/Vertex/Vector/FFVVertex.h (Repository): added .fh file for FFVVertex
* Decay/Perturbative/SMWZDecayer.h (Repository): added decayer for H -> f fbar
* Helicity/Vertex/Scalar/Makefile.am (Repository): changes to include .fh file for FFSVertex
2005-10-19 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Helicity/Vertex/StandardModel/SMFFHVertex.cc (Repository): changes to remove hard-wired value of pi
* Helicity/WaveFunction/ScalarWaveFunction.cc (Repository): changes to correctly return rho matrix
* Decay/Perturbative/SMWZDecayer.icc (Repository): modifications to SMWZDecayer to clean up code using new constructors to produce spinInfo
* Helicity/Vertex/Vector/FFVVertex.h (Repository): added .fh file for FFVVertex
* Decay/Perturbative/SMWZDecayer.h (Repository): added decayer for H -> f fbar
* Helicity/Vertex/Scalar/Makefile.am (Repository): changes to include .fh file for FFSVertex
2005-10-07 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Decay/Perturbative/SMTopDecayer.h (Repository): Added TopDecayer
2005-10-07 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Decay/HwDecayHandler.cc (Repository): changes so the reference to the
PartonicHadronizer can be set to null to switch off hadronization.
2005-10-07 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Decay/Perturbative/SMTopDecayer.h (Repository): Added TopDecayer
2005-10-07 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Decay/HwDecayHandler.cc (Repository): changes so the reference to the
PartonicHadronizer can be set to null to switch off hadronization.
2005-10-07 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Decay/Perturbative/SMTopDecayer.h (Repository): Added TopDecayer
2005-10-07 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Decay/HwDecayHandler.cc (Repository): changes so the reference to the
PartonicHadronizer can be set to null to switch off hadronization.
2005-10-05 David Grellscheid <David.Grellscheid@durham.ac.uk>
* acinclude.m4: Fixed bug #8. CLHEPINCLUDE is used correctly now
2005-10-05 David Grellscheid <David.Grellscheid@durham.ac.uk>
* acinclude.m4: Fixed bug #8. CLHEPINCLUDE is used correctly now
2005-10-05 David Grellscheid <David.Grellscheid@durham.ac.uk>
* acinclude.m4: Fixed bug #8. CLHEPINCLUDE is used correctly now
2005-09-30 David Grellscheid <David.Grellscheid@durham.ac.uk>
* configure.ac, Makefile.am: configure switches for Mac OS X
2005-09-30 David Grellscheid <David.Grellscheid@durham.ac.uk>
* configure.ac, Makefile.am: configure switches for Mac OS X
2005-09-30 David Grellscheid <David.Grellscheid@durham.ac.uk>
* configure.ac, Makefile.am: configure switches for Mac OS X
2005-09-29 David Grellscheid <David.Grellscheid@durham.ac.uk>
* src/Hw64Decays.in, src/Decays.in: Activated Mambo decayer for
5-body decays in Hw64Decays.in to keep code working
* Utilities/Math.cc: inlined power series
2005-09-29 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Utilities/Math.h (Repository): changes so private power series for dilog is not publically visible
* Decay/MamboDecayer.h (Repository): removed 5 body decay option from Hw64Decayer
2005-09-29 David Grellscheid <David.Grellscheid@durham.ac.uk>
* src/Hw64Decays.in, src/Decays.in: Activated Mambo decayer for
5-body decays in Hw64Decays.in to keep code working
* Utilities/Math.cc: inlined power series
2005-09-29 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Utilities/Math.h (Repository): changes so private power series for dilog is not publically visible
* Decay/MamboDecayer.h (Repository): removed 5 body decay option from Hw64Decayer
2005-09-29 David Grellscheid <David.Grellscheid@durham.ac.uk>
* src/Hw64Decays.in, src/Decays.in: Activated Mambo decayer for
5-body decays in Hw64Decays.in to keep code working
* Utilities/Math.cc: inlined power series
2005-09-29 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Utilities/Math.h (Repository): changes so private power series for dilog is not publically visible
* Decay/MamboDecayer.h (Repository): removed 5 body decay option from Hw64Decayer
2005-09-28 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Decay/Baryon/BaryonFactorizedDecayer.h (Repository): added all .so files needed by library to all classes to ensure correct dynamic loading
* Helicity/Vertex/Tensor/FFTVertex.fh (Repository): added .fh to define pointers for the tensor vertices
2005-09-28 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Decay/Baryon/BaryonFactorizedDecayer.h (Repository): added all .so files needed by library to all classes to ensure correct dynamic loading
* Helicity/Vertex/Tensor/FFTVertex.fh (Repository): added .fh to define pointers for the tensor vertices
2005-09-28 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Decay/Baryon/BaryonFactorizedDecayer.h (Repository): added all .so files needed by library to all classes to ensure correct dynamic loading
* Helicity/Vertex/Tensor/FFTVertex.fh (Repository): added .fh to define pointers for the tensor vertices
2005-09-27 kmh <kmh@phyip3.dur.ac.uk>
* Decay/Radiation/FFDipole.cc (Module): Implemented boost factor
added some histogramming (PAW).
2005-09-27 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Decay/MamboDecayer.cc (Repository): Added class description and removed obsolete function
(Repository): Removed unused variables
2005-09-27 Peter Richardson <Peter.Richardson@durham.ac.uk>
* Decay/DecayPhaseSpaceMode.cc (Repository): change to unmask parameters
2005-09-27 Martyn Gigg <m.a.gigg@dur.ac.uk>
* Decay/MamboDecayer.cc (Repository): Added class description and removed obsolete function
(Repository): Removed unused variables