ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/scripts/generateAll
Revision: 1.1
Committed: Mon Jul 28 23:13:42 2008 UTC (16 years, 9 months ago) by paus
Branch: MAIN
CVS Tags: Mit_008pre1, Mit_006b, Mit_006a, Mit_006, Mit_005, Mit_004, MITHEP_2_0_x
Log Message:
Adding Stable/DecayParts.

File Contents

# User Rev Content
1 paus 1.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;