git://git.uio.no
/
u
/
mrichter
/
AliRoot.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
extension for mixed harmonics and some ^M
[u/mrichter/AliRoot.git]
/
TPC
/
scripts
/
cppViolator.sh
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
#!/bin/bash
2
#
3
# simple script to filter warnings in TPC code
4
# root warning are filtered out
5
#
6
7
8
make clean-TPC
9
make -i -j 5 &> compile.txt
10
11
cat compile.txt | grep -v $ROOTSYS | grep warning
12
13
14
15