ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/macros/doc/make_doc.sh
Revision: 1.1
Committed: Thu Jul 16 15:41:03 2009 UTC (15 years, 9 months ago) by loizides
Content type: application/x-sh
Branch: MAIN
Log Message:
Improved version.

File Contents

# User Rev Content
1 loizides 1.1 #!/bin/bash
2     # $Id: rmDesc.sh,v 1.1 2009/07/16 13:39:12 loizides Exp $
3    
4    
5     XPATH="./MitAna//macros/doc"
6    
7     cd $CMSSW_BASE/src
8     for i in MitCommon MitAna MitPhysics; do
9     find ${i}/*/interface -iname "*.h" -exec $XPATH/addDesc.sh "{}" \;
10     done
11     exit 1;
12     cd $CMSSW_BASE/src/MitAna/macros/doc
13     root -b -q make_doc.C+
14    
15     cd $CMSSW_BASE/src
16     for i in MitCommon MitAna MitPhysics; do
17     find ${i}/*/interface -iname "*.h" -exec $XPATH/rmDesc.sh "{}" \;
18     done