1 |
#!/bin/bash
|
2 |
|
3 |
DIR=$CMSSW_BASE/src/MitAna/DataTree/scripts
|
4 |
|
5 |
$DIR/generateCode.py --file=BaseCollection.h
|
6 |
$DIR/generateCode.py --file=BasePartAction.h
|
7 |
$DIR/generateCode.py --file=BasePart.h
|
8 |
$DIR/generateCode.py --file=Collection.h
|
9 |
$DIR/generateCode.py --file=DataObject.h
|
10 |
$DIR/generateCode.py --file=DecayPart.h
|
11 |
$DIR/generateCode.py --file=ObjArray.h
|
12 |
$DIR/generateCode.py --file=StablePart.h
|
13 |
$DIR/generateCode.py --file=Types.h
|
14 |
|
15 |
$DIR/generateCode.py --file=BaseCollection.cc
|
16 |
$DIR/generateCode.py --file=BasePartAction.cc
|
17 |
$DIR/generateCode.py --file=BasePart.cc
|
18 |
$DIR/generateCode.py --file=Collection.cc
|
19 |
$DIR/generateCode.py --file=DataObject.cc
|
20 |
$DIR/generateCode.py --file=DecayPart.cc
|
21 |
$DIR/generateCode.py --file=ObjArray.cc
|
22 |
$DIR/generateCode.py --file=StablePart.cc
|
23 |
|
24 |
exit;
|